nix/pkgs: add duplicacy

This commit is contained in:
steveej 2018-11-11 01:06:53 +01:00
parent 3ed35ec5b2
commit 33e015bb92
4 changed files with 368 additions and 0 deletions

View file

@ -0,0 +1,12 @@
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "env";
buildInputs = [
zsh
go
go2nix
dep2nix
nix-prefetch-github
(callPackage ./default.nix {})
];
}