2010-04-28 11:38:55 +02:00
|
|
|
{stdenv, fetchurl, openldap, readline, db4, openssl, cyrus_sasl} :
|
2009-04-22 01:18:09 +02:00
|
|
|
|
2008-01-28 20:41:25 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2010-04-28 11:38:55 +02:00
|
|
|
name = "heimdal-1.3.2";
|
2008-01-28 20:41:25 +01:00
|
|
|
|
2009-04-22 01:18:09 +02:00
|
|
|
src = fetchurl {
|
|
|
|
urls = [
|
|
|
|
"http://www.h5l.org/dist/src/${name}.tar.gz"
|
|
|
|
"http://ftp.pdc.kth.se/pub/heimdal/src/${name}.tar.gz"
|
|
|
|
];
|
2010-04-28 11:38:55 +02:00
|
|
|
sha256 = "0qwcq79nffsv9iyz4cf854l85i3x1cq79rxb34prpmjbfvs3ynwn";
|
2009-04-22 01:18:09 +02:00
|
|
|
};
|
2008-01-28 20:41:25 +01:00
|
|
|
|
2009-04-22 01:18:09 +02:00
|
|
|
## ugly, X should be made an option
|
|
|
|
configureFlags = "--with-openldap=${openldap} --without-x";
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ readline db4 openssl openldap cyrus_sasl ];
|
2008-01-28 20:41:25 +01:00
|
|
|
}
|