heimdal: Correct the openssl dependency

This commit is contained in:
William A. Kennington III 2015-01-09 09:00:19 -08:00
parent 5bc68e1a0e
commit 942e179974

View File

@ -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;