2008-01-28 20:41:25 +01:00
|
|
|
args: with args;
|
2009-04-22 01:18:09 +02:00
|
|
|
|
2008-01-28 20:41:25 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2009-04-22 01:18:09 +02:00
|
|
|
name = "heimdal-1.0.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"
|
|
|
|
];
|
|
|
|
sha256 = "1h4x41lpv2abpv5l3yjd58pfzs0kkp5sbnih9iykhwd6sii1iig5";
|
|
|
|
};
|
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
|
|
|
}
|