41 lines
938 B
Nix
Raw Normal View History

2014-11-23 18:36:16 +03:00
{stdenv, fetchurl, ncurses, tcl, openssl, pam, pkgconfig, gettext, kerberos
, openldap
}:
2014-11-23 18:36:16 +03:00
let
version = "2.00";
baseName = "alpine";
in
stdenv.mkDerivation {
name = "${baseName}-${version}";
src = fetchurl {
2014-11-23 18:36:16 +03:00
url = "ftp://ftp.cac.washington.edu/alpine/alpine-${version}.tar.bz2";
sha256 = "19m2w21dqn55rhxbh5lr9qarc2fqa9wmpj204jx7a0zrb90bhpf8";
};
2014-11-23 18:36:16 +03:00
buildInputs = [
ncurses tcl openssl pam kerberos openldap
];
hardening_format = false;
hardening_fortify = false;
2014-11-23 18:36:16 +03:00
configureFlags = [
"--with-ssl-include-dir=${openssl}/include/openssl"
2015-04-26 21:18:07 -07:00
"--with-tcl-lib=${tcl.libPrefix}"
];
2014-11-23 19:23:03 +03:00
preConfigure = ''
export NIX_LDFLAGS="$NIX_LDFLAGS -lgcc_s"
'';
2014-11-23 18:36:16 +03:00
meta = {
description = "Console mail reader";
2014-11-23 18:36:16 +03:00
license = stdenv.lib.licenses.asl20;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
homepage = "https://www.washington.edu/alpine/";
};
}