You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
227 B
Nix
15 lines
227 B
Nix
6 years ago
|
with import <nixpkgs> {};
|
||
|
stdenv.mkDerivation {
|
||
|
name = "env";
|
||
|
buildInputs = [
|
||
|
(libxslt.override {
|
||
|
# added in nixpkgs 11-12-2016
|
||
|
cryptoSupport = true;
|
||
|
})
|
||
|
libxml2
|
||
|
wget
|
||
|
rsync
|
||
|
gnumake
|
||
|
];
|
||
|
}
|