nixpkgs/pkgs/tools/networking/ssmtp/default.nix

46 lines
1.4 KiB
Nix
Raw Normal View History

2021-08-02 13:15:47 +02:00
{ lib, stdenv, fetchurl, tlsSupport ? true, openssl }:
2021-08-02 13:15:47 +02:00
stdenv.mkDerivation rec {
pname = "ssmtp";
version = "2.64";
src = fetchurl {
2021-08-02 13:15:47 +02:00
url = "mirror://debian/pool/main/s/ssmtp/ssmtp_${version}.orig.tar.bz2";
sha256 = "0dps8s87ag4g3jr6dk88hs9zl46h3790marc5c2qw7l71k4pvhr2";
};
# A request has been made to merge this patch into ssmtp.
# See: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=858781
patches = [ ./ssmtp_support_AuthPassFile_parameter.patch ];
2018-07-25 23:44:21 +02:00
configureFlags = [
"--sysconfdir=/etc"
2021-01-15 10:19:50 +01:00
(lib.enableFeature tlsSupport "ssl")
2018-07-25 23:44:21 +02:00
];
2021-08-02 13:15:47 +02:00
postConfigure = ''
# Don't run the script that interactively generates a config file.
# Also don't install the broken, cyclic symlink /lib/sendmail.
sed -e '/INSTALLED_CONFIGURATION_FILE/d' \
-e 's|/lib/sendmail|$(TMPDIR)/sendmail|' \
-i Makefile
substituteInPlace Makefile \
--replace '$(INSTALL) -s' '$(INSTALL) -s --strip-program $(STRIP)'
'';
2019-11-05 02:10:31 +01:00
installFlags = [ "etcdir=$(out)/etc" ];
installTargets = [ "install" "install-sendmail" ];
2021-01-15 10:19:50 +01:00
buildInputs = lib.optional tlsSupport openssl;
2021-01-15 10:19:50 +01:00
NIX_LDFLAGS = lib.optionalString tlsSupport "-lcrypto";
2019-01-04 20:33:51 +01:00
meta = with lib; {
2021-08-02 13:15:47 +02:00
description = "simple MTA to deliver mail from a computer to a mail hub";
platforms = platforms.linux;
2018-08-11 14:34:24 +02:00
license = licenses.gpl2;
maintainers = with maintainers; [ basvandijk ];
};
}