summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-01-09 09:00:19 -0800
committerWilliam A. Kennington III <william@wkennington.com>2015-01-09 09:01:46 -0800
commit942e179974ceae1d88b64607817636a678b93765 (patch)
tree7e4630aba792bf132a795566f7afc9d1f0439c31 /pkgs/development/libraries
parent5bc68e1a0ee8ff5f6670c62567679dfbf7ea4052 (diff)
downloadnixlib-942e179974ceae1d88b64607817636a678b93765.tar
nixlib-942e179974ceae1d88b64607817636a678b93765.tar.gz
nixlib-942e179974ceae1d88b64607817636a678b93765.tar.bz2
nixlib-942e179974ceae1d88b64607817636a678b93765.tar.lz
nixlib-942e179974ceae1d88b64607817636a678b93765.tar.xz
nixlib-942e179974ceae1d88b64607817636a678b93765.tar.zst
nixlib-942e179974ceae1d88b64607817636a678b93765.zip
heimdal: Correct the openssl dependency
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/kerberos/heimdal.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/libraries/kerberos/heimdal.nix b/pkgs/development/libraries/kerberos/heimdal.nix
index f126214bfde6..c9dd28cd3964 100644
--- a/pkgs/development/libraries/kerberos/heimdal.nix
+++ b/pkgs/development/libraries/kerberos/heimdal.nix
@@ -19,6 +19,7 @@ stdenv.mkDerivation rec {
     "--with-capng"
     "--with-openldap=${openldap}"
     "--with-sqlite3=${sqlite}"
+    "--with-openssl-lib=${openssl}/lib"
     "--without-x"
   ];
 
@@ -40,11 +41,9 @@ stdenv.mkDerivation rec {
 
   buildInputs = [
     pkgconfig flex yacc readline openldap libcap_ng sqlite db ncurses
-    cyrus_sasl
+    cyrus_sasl openssl
   ];
 
-  propagatedBuildInputs = [ openssl ];
-
   meta = with stdenv.lib; {
     description = "an implementation of Kerberos 5 (and some more stuff) largely written in Sweden";
     license = licenses.bsd3;