nixpkgs/pkgs/development/libraries/openldap/default.nix

28 lines
890 B
Nix
Raw Normal View History

{stdenv, fetchurl, openssl, cyrus_sasl, db, groff}:
2012-07-02 21:53:57 +02:00
stdenv.mkDerivation rec {
2014-04-10 14:10:00 +02:00
name = "openldap-2.4.39";
2012-07-02 21:53:57 +02:00
src = fetchurl {
url = "http://www.openldap.org/software/download/OpenLDAP/openldap-release/${name}.tgz";
2014-04-10 14:10:00 +02:00
sha256 = "19zq9dc7dl03wmqd11fbsdii1npyq1vlicl3nxbfygqh8xrwhrw2";
};
2012-07-02 21:53:57 +02:00
buildInputs = [ openssl cyrus_sasl db groff ];
configureFlags =
[ "--enable-overlays"
2014-08-12 13:50:40 +02:00
"--disable-dependency-tracking" # speeds up one-time build
] ++ stdenv.lib.optional (openssl == null) "--without-tls"
++ stdenv.lib.optional (cyrus_sasl == null) "--without-cyrus-sasl";
2012-07-02 21:53:57 +02:00
dontPatchELF = 1; # !!!
2014-09-01 05:55:46 +02:00
meta = with stdenv.lib; {
homepage = http://www.openldap.org/;
description = "An open source implementation of the Lightweight Directory Access Protocol";
2014-09-01 05:55:46 +02:00
maintainers = with maintainers; [ lovek323 mornfall ];
platforms = platforms.unix;
};
}