11 lines
203 B
Nix
11 lines
203 B
Nix
with import <nixpkgs> {};
|
|
stdenv.mkDerivation rec {
|
|
name = "env";
|
|
env = buildEnv { name = name; paths = buildInputs; };
|
|
buildInputs = [
|
|
go
|
|
golint
|
|
];
|
|
hardeningDisable = [ "fortify" ];
|
|
}
|