c3d2-web/shell.nix

18 lines
243 B
Nix
Raw Permalink Normal View History

2016-12-11 18:41:07 +01:00
with import <nixpkgs> {};
2023-03-27 21:54:51 +02:00
2016-12-11 18:41:07 +01:00
stdenv.mkDerivation {
name = "env";
buildInputs = [
2023-03-27 21:54:51 +02:00
(libxslt.override {
2016-12-11 18:41:07 +01:00
cryptoSupport = true;
2023-03-27 21:54:51 +02:00
})
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
}