add nix support

This commit is contained in:
Jörg Thalheim 2016-12-11 18:41:07 +01:00
parent 78543cf674
commit 6f2511b814
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
1 changed files with 14 additions and 0 deletions

14
default.nix Normal file
View File

@ -0,0 +1,14 @@
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "env";
buildInputs = [
(libxslt.override {
# added in nixpkgs 11-12-2016
cryptoSupport = true;
})
libxml2
wget
rsync
gnumake
];
}