Files
postmoogle/vendor/github.com/jhillyerd/enmime/shell.nix
2022-11-16 12:08:51 +02:00

11 lines
203 B
Nix

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