c3d2-web/default.nix

15 lines
227 B
Nix
Raw Normal View History

2016-12-11 18:41:07 +01:00
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "env";
buildInputs = [
(libxslt.override {
# added in nixpkgs 11-12-2016
cryptoSupport = true;
})
libxml2
wget
rsync
gnumake
];
}