nixpkgs/pkgs/applications/networking/mailreaders/alpine/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
808 B
Nix
Raw Normal View History

2021-03-14 16:11:48 +00:00
{lib, stdenv, fetchurl, ncurses, tcl, openssl, pam, libkrb5
2014-11-23 15:36:16 +00:00
, openldap
}:
2017-08-01 09:41:46 +00:00
stdenv.mkDerivation rec {
pname = "alpine";
2021-10-16 18:08:52 +00:00
version = "2.25";
src = fetchurl {
2019-09-06 21:14:27 +00:00
url = "http://alpine.x10host.com/alpine/release/src/${pname}-${version}.tar.xz";
2021-10-16 18:08:52 +00:00
sha256 = "0xppxhcbafq9qa1rns5zl0n238gai08xhvcf2as0nx7nh84ib2k5";
2014-11-23 15:36:16 +00:00
};
2014-11-23 15:36:16 +00:00
buildInputs = [
2021-03-14 16:11:48 +00:00
ncurses tcl openssl pam libkrb5 openldap
2014-11-23 15:36:16 +00:00
];
2017-08-01 09:41:46 +00:00
hardeningDisable = [ "format" ];
2014-11-23 15:36:16 +00:00
configureFlags = [
"--with-ssl-include-dir=${openssl.dev}/include/openssl"
2016-07-17 11:58:06 +00:00
"--with-passfile=.pine-passfile"
2020-07-10 16:33:58 +00:00
"--with-c-client-target=slx"
];
meta = with lib; {
description = "Console mail reader";
2019-09-06 21:14:27 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
homepage = "http://alpine.x10host.com/";
2014-11-23 15:36:16 +00:00
};
}