c3d2-web/shell.nix

21 lines
442 B
Nix
Raw Normal View History

2016-12-11 18:41:07 +01:00
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "env";
buildInputs = [
2019-01-03 21:42:41 +01:00
((libxslt.override {
2016-12-11 18:41:07 +01:00
# added in nixpkgs 11-12-2016
cryptoSupport = true;
2019-01-03 21:42:41 +01:00
}).overrideAttrs (old: {
# can be removed eventually: https://github.com/NixOS/nixpkgs/pull/53346
buildInputs = old.buildInputs ++ [ libgcrypt ];
}))
2016-12-11 18:41:07 +01:00
libxml2
wget
rsync
gnumake
];
shellHook = ''
unset SOURCE_DATE_EPOCH
'';
2016-12-11 18:41:07 +01:00
}