nixpkgs/pkgs/tools/networking/uwimap/default.nix
Lluís Batlle i Rossell d72fe9fee2 Adding prayer. It builds on linux x86_64, but I've not tried to run it.
svn path=/nixpkgs/trunk/; revision=30347
2011-11-08 21:07:57 +00:00

39 lines
979 B
Nix

{stdenv, fetchurl, pam, openssl}:
stdenv.mkDerivation {
name = "uw-imap-2007";
src = fetchurl {
url = "ftp://ftp.cac.washington.edu/imap/imap-2007f.tar.gz";
sha256 = "0a2a00hbakh0640r2wdpnwr8789z59wnk7rfsihh3j0vbhmmmqak";
};
makeFlags = "lnp"; # Linux with PAM modules
buildInputs = [ pam openssl ];
patchPhase = ''
sed -i -e s,/usr/local/ssl,${openssl}, \
src/osdep/unix/Makefile
'';
installPhase = ''
ensureDir $out/bin $out/lib $out/include
cp c-client/*.h c-client/linkage.c $out/include
cp c-client/c-client.a $out/lib/libc-client.a
cp mailutil/mailutil imapd/imapd dmail/dmail mlock/mlock mtest/mtest tmail/tmail \
tools/{an,ua} $out/bin
'';
meta = {
homepage = http://www.washington.edu/imap/;
description = "UW IMAP toolkit - IMAP-supporting software developed by the UW";
license = "Apache2";
platforms = with stdenv.lib.platforms; linux;
};
passthru = {
withSSL = true;
};
}