tcp-stream-proxy/default.nix
Garionion dbd5526b5c
Some checks failed
continuous-integration/drone Build is failing
feat: add drone file
2023-01-28 20:30:10 +01:00

10 lines
No EOL
143 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
BuildInputs = [
gcc
];
nativeBuildInputs = [
go_1_19
];
}