mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
6417110fb5
svn path=/nixpkgs/trunk/; revision=10339
13 lines
378 B
Nix
13 lines
378 B
Nix
args: with args;
|
|
stdenv.mkDerivation rec {
|
|
name = "heimdal-1.0.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://ftp.pdc.kth.se/pub/heimdal/src/${name}.tar.gz";
|
|
sha256 = "1h4x41lpv2abpv5l3yjd58pfzs0kkp5sbnih9iykhwd6sii1iig5";
|
|
};
|
|
|
|
configureFlags = "--enable-shared --disable-static --with-openldap=${openldap}";
|
|
propagatedBuildInputs = [ readline db4 openssl openldap cyrus_sasl ];
|
|
}
|