libxslt: also add libgcrypt

This commit is contained in:
Jörg Thalheim 2019-01-03 21:42:41 +01:00
parent c62de7e793
commit 306990f120
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
1 changed files with 5 additions and 2 deletions

View File

@ -2,10 +2,13 @@ with import <nixpkgs> {};
stdenv.mkDerivation {
name = "env";
buildInputs = [
(libxslt.override {
((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