33 lines
870 B
Nix
33 lines
870 B
Nix
{stdenv, fetchurl, ncurses, tcl, openssl, pam, kerberos
|
|
, openldap
|
|
}:
|
|
|
|
# NOTE: Please check if any changes here are applicable to ../realpine/ as well
|
|
stdenv.mkDerivation rec {
|
|
name = "alpine-${version}";
|
|
version = "2.21";
|
|
|
|
src = fetchurl {
|
|
url = "http://alpine.freeiz.com/alpine/release/src/${name}.tar.xz";
|
|
sha256 = "0f3llxrmaxw7w9w6aixh752md3cdc91mwfmbarkm8s413f4bcc30";
|
|
};
|
|
|
|
buildInputs = [
|
|
ncurses tcl openssl pam kerberos openldap
|
|
];
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
configureFlags = [
|
|
"--with-ssl-include-dir=${openssl.dev}/include/openssl"
|
|
"--with-passfile=.pine-passfile"
|
|
];
|
|
|
|
meta = {
|
|
description = "Console mail reader";
|
|
license = stdenv.lib.licenses.asl20;
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
homepage = https://www.washington.edu/alpine/;
|
|
};
|
|
}
|