c3d2-web/shell.nix
Astro 8c7f936851 shell.nix: unset SOURCE_DATE_EPOCH
we require the current time.
2020-07-23 00:37:25 +02:00

21 lines
442 B
Nix

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