summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2019-01-03 21:42:21 +0100
committerGitHub <noreply@github.com>2019-01-03 21:42:21 +0100
commit68a16fcc744d67ba00f646f0d90d3b125cf7b71d (patch)
tree79f401478437df77cee2ad9300125509b12ab880 /pkgs
parent201c4b8a3e3af96a7c1604e9032b1d5beb77b085 (diff)
parente7f3b4d2844263aa0382ffece807a91daca28ebc (diff)
downloadnixpkgs-68a16fcc744d67ba00f646f0d90d3b125cf7b71d.tar
nixpkgs-68a16fcc744d67ba00f646f0d90d3b125cf7b71d.tar.gz
nixpkgs-68a16fcc744d67ba00f646f0d90d3b125cf7b71d.tar.bz2
nixpkgs-68a16fcc744d67ba00f646f0d90d3b125cf7b71d.tar.lz
nixpkgs-68a16fcc744d67ba00f646f0d90d3b125cf7b71d.tar.xz
nixpkgs-68a16fcc744d67ba00f646f0d90d3b125cf7b71d.tar.zst
nixpkgs-68a16fcc744d67ba00f646f0d90d3b125cf7b71d.zip
Merge pull request #53346 from astro/libxslt-libgcrypt
libxslt: add libgcrypt to buildInputs for cryptoSupport
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/libxslt/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libxslt/default.nix b/pkgs/development/libraries/libxslt/default.nix
index 6dc40bd45a0..8a847499c3f 100644
--- a/pkgs/development/libraries/libxslt/default.nix
+++ b/pkgs/development/libraries/libxslt/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, libxml2, findXMLCatalogs, python2
+{ stdenv, fetchurl, libxml2, findXMLCatalogs, python2, libgcrypt
 , cryptoSupport ? false
 , pythonSupport ? stdenv.buildPlatform == stdenv.hostPlatform
 }:
@@ -28,7 +28,9 @@ stdenv.mkDerivation rec {
 
   outputs = [ "bin" "dev" "out" "man" "doc" ] ++ stdenv.lib.optional pythonSupport "py";
 
-  buildInputs = [ libxml2.dev ] ++ stdenv.lib.optionals pythonSupport [ libxml2.py python2 ];
+  buildInputs = [ libxml2.dev ]
+    ++ stdenv.lib.optionals pythonSupport [ libxml2.py python2 ]
+    ++ stdenv.lib.optionals cryptoSupport [ libgcrypt ];
 
   propagatedBuildInputs = [ findXMLCatalogs ];