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
52 lines
1.8 KiB
Nix
52 lines
1.8 KiB
Nix
{ stdenv, fetchurl, lib, tls ? true, gnutls ? null }:
|
|
|
|
assert tls -> gnutls != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "2.0";
|
|
name = "nullmailer-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://untroubled.org/nullmailer/nullmailer-${version}.tar.gz";
|
|
sha256 = "112ghdln8q9yljc8kp9mc3843mh0fyb4rig2v4q2dzy1l324q3yp";
|
|
};
|
|
|
|
buildInputs = stdenv.lib.optional tls gnutls;
|
|
|
|
configureFlags = [
|
|
"--sysconfdir=/etc"
|
|
"--localstatedir=/var"
|
|
] ++ stdenv.lib.optional tls "--enable-tls";
|
|
|
|
installFlags = [ "DESTDIR=$(out)" ];
|
|
|
|
# We have to remove the ''var'' directory, since nix can't handle named pipes
|
|
# and we can't use it in the store anyway. Same for ''etc''.
|
|
# The second line is need, because the installer of nullmailer will copy its
|
|
# own prepared version of ''etc'' and ''var'' and also uses the prefix path (configure phase)
|
|
# for hardcoded absolute references to its own binary farm, e.g. sendmail binary is
|
|
# calling nullmailer-inject binary. Since we can't configure inside the store of
|
|
# the derivation we need both directories in the root, but don't want to put them there
|
|
# during install, hence we have to fix mumbling inside the install directory.
|
|
# This is kind of a hack, but the only way I know of, yet.
|
|
postInstall = ''
|
|
rm -rf $out/var/ $out/etc/
|
|
mv $out/$out/* $out/
|
|
rmdir $out/$out
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
homepage = http://untroubled.org/nullmailer/;
|
|
description = ''
|
|
A sendmail/qmail/etc replacement MTA for hosts which relay to a fixed set of smart relays.
|
|
It is designed to be simple to configure, secure, and easily extendable.
|
|
'';
|
|
license = lib.licenses.gpl2;
|
|
platforms = lib.platforms.all;
|
|
maintainers = with lib.maintainers ; [ sargon ];
|
|
};
|
|
}
|