add vendoring

This commit is contained in:
Aine
2022-11-16 12:08:51 +02:00
parent 14751cbf3a
commit c1d33fe3cb
1104 changed files with 759066 additions and 0 deletions

10
vendor/github.com/jhillyerd/enmime/shell.nix generated vendored Normal file
View File

@@ -0,0 +1,10 @@
with import <nixpkgs> {};
stdenv.mkDerivation rec {
name = "env";
env = buildEnv { name = name; paths = buildInputs; };
buildInputs = [
go
golint
];
hardeningDisable = [ "fortify" ];
}