mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 02:51:18 +00:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
34 lines
890 B
Nix
34 lines
890 B
Nix
{stdenv, fetchurl, ncurses, tcl, openssl, pam, pkgconfig, gettext, 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/;
|
|
};
|
|
}
|