2008-01-28 20:41:25 +01:00
|
|
|
args: with args;
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "heimdal-1.0.2";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2008-12-21 20:34:45 +01:00
|
|
|
urls = [ "http://www.h5l.org/dist/src/${name}.tar.gz"
|
|
|
|
"http://ftp.pdc.kth.se/pub/heimdal/src/${name}.tar.gz" ];
|
2008-12-24 00:51:29 +01:00
|
|
|
sha256 = "1h4x41lpv2abpv5l3yjd58pfzs0kkp5sbnih9iykhwd6sii1iig5";
|
2008-01-28 20:41:25 +01:00
|
|
|
};
|
|
|
|
|
2008-03-02 23:12:27 +01:00
|
|
|
## ugly, X should be made an option
|
|
|
|
configureFlags = "--enable-shared --disable-static --with-openldap=${openldap} --without-x";
|
2008-01-28 20:42:33 +01:00
|
|
|
propagatedBuildInputs = [ readline db4 openssl openldap cyrus_sasl ];
|
2008-01-28 20:41:25 +01:00
|
|
|
}
|