3
0
Fork 0
forked from mirrors/nixpkgs

Added cyrus-sasl-2.1.22 with openssl

svn path=/nixpkgs/trunk/; revision=9388
This commit is contained in:
Yury G. Kudryashov 2007-10-01 15:11:38 +00:00
parent b11756b9e4
commit ce6aef6574
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,12 @@
args:
with args;
stdenv.mkDerivation {
name = "cyrus-sasl-2.1.22";
src = fetchurl {
url = ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/cyrus-sasl-2.1.22.tar.gz;
sha256 = "c69e3853f35b14ee2c3f6e876e42d880927258ff4678aa052e5f0853db209962";
};
configureFlags="--with-openssl=${openssl} --with-plugindir=\${out}/lib/sasl2 --with-configdir=\${out}/lib/sasl2";
buildInputs = [ openssl db4 gettext ];
}

View file

@ -1478,6 +1478,10 @@ rec {
inherit fetchurl stdenv;
};
cyrus_sasl = import ../development/libraries/cyrus-sasl {
inherit fetchurl stdenv openssl db4 gettext;
};
db4 = db45;
db44 = import ../development/libraries/db4/db4-4.4.nix {