infra/nix/pkgs/duplicacy/shell.nix

13 lines
188 B
Nix
Raw Normal View History

2022-10-31 11:04:38 +01:00
with import <nixpkgs> { };
2018-11-11 01:06:53 +01:00
stdenv.mkDerivation {
name = "env";
buildInputs = [
zsh
go
go2nix
dep2nix
nix-prefetch-github
2022-10-31 11:04:38 +01:00
(callPackage ./default.nix { })
2018-11-11 01:06:53 +01:00
];
}