summary refs log tree commit diff
path: root/pkgs/development/libraries/cyrus-sasl/default.nix
blob: 2c96068c0670fc8f20f3c7bbb646326f420a0737 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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 ];
}