tcp-stream-proxy/default.nix

10 lines
143 B
Nix
Raw Normal View History

2023-01-28 20:30:10 +01:00
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
BuildInputs = [
gcc
];
nativeBuildInputs = [
go_1_19
];
}