* Got rid of all --disable-static flags; they're redundant now.
* Also a bunch of style cleanups (tabs, with args, ...). svn path=/nixpkgs/branches/stdenv-updates/; revision=15235
This commit is contained in:
@@ -1,14 +1,18 @@
|
||||
args: with args;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "heimdal-1.0.2";
|
||||
name = "heimdal-1.0.2";
|
||||
|
||||
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";
|
||||
};
|
||||
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";
|
||||
};
|
||||
|
||||
## ugly, X should be made an option
|
||||
configureFlags = "--enable-shared --disable-static --with-openldap=${openldap} --without-x";
|
||||
propagatedBuildInputs = [ readline db4 openssl openldap cyrus_sasl ];
|
||||
## ugly, X should be made an option
|
||||
configureFlags = "--with-openldap=${openldap} --without-x";
|
||||
|
||||
propagatedBuildInputs = [ readline db4 openssl openldap cyrus_sasl ];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user