2021-01-19 07:50:56 +01:00
|
|
|
{ stdenv, lib, fetchurl, autoreconfHook, pkg-config, texinfo
|
2018-12-16 19:06:23 +01:00
|
|
|
, netcat-gnu, gnutls, gsasl, libidn2, Security
|
2017-10-24 09:56:06 +02:00
|
|
|
, withKeyring ? true, libsecret ? null
|
2017-10-14 08:40:29 +02:00
|
|
|
, systemd ? null }:
|
2013-07-19 00:53:06 +02:00
|
|
|
|
2017-02-23 08:57:53 +01:00
|
|
|
let
|
|
|
|
tester = "n"; # {x| |p|P|n|s}
|
|
|
|
journal = if stdenv.isLinux then "y" else "n";
|
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
2017-11-17 17:35:01 +01:00
|
|
|
pname = "msmtp";
|
2021-11-07 00:57:58 +01:00
|
|
|
version = "1.8.19";
|
2007-09-03 14:10:57 +02:00
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
src = fetchurl {
|
2019-04-25 02:27:08 +02:00
|
|
|
url = "https://marlam.de/${pname}/releases/${pname}-${version}.tar.xz";
|
2021-11-07 00:57:58 +01:00
|
|
|
sha256 = "sha256-NKHhmBF2h02+TuZu4NkQPJCYmqTc3Ehh5N4Fzn5EUms=";
|
2007-09-03 14:10:57 +02:00
|
|
|
};
|
|
|
|
|
2017-02-23 08:57:53 +01:00
|
|
|
patches = [
|
|
|
|
./paths.patch
|
|
|
|
];
|
|
|
|
|
2018-12-16 19:06:23 +01:00
|
|
|
buildInputs = [ gnutls gsasl libidn2 ]
|
2021-01-15 14:21:58 +01:00
|
|
|
++ lib.optional stdenv.isDarwin Security
|
|
|
|
++ lib.optional withKeyring libsecret;
|
2017-10-24 09:56:06 +02:00
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config texinfo ];
|
2015-11-19 08:38:11 +01:00
|
|
|
|
2021-11-09 03:22:54 +01:00
|
|
|
configureFlags = [ "--sysconfdir=/etc" "--with-libgsasl" ]
|
|
|
|
++ lib.optional stdenv.isDarwin [ "--with-macosx-keyring" ];
|
2010-05-27 21:33:33 +02:00
|
|
|
|
2015-01-09 17:31:10 +01:00
|
|
|
postInstall = ''
|
2017-11-17 17:35:01 +01:00
|
|
|
install -d $out/share/doc/${pname}/scripts
|
|
|
|
cp -r scripts/{find_alias,msmtpqueue,msmtpq,set_sendmail} $out/share/doc/${pname}/scripts
|
|
|
|
install -Dm644 doc/*.example $out/share/doc/${pname}
|
|
|
|
|
2017-02-23 08:57:53 +01:00
|
|
|
substitute scripts/msmtpq/msmtpq $out/bin/msmtpq \
|
|
|
|
--replace @msmtp@ $out/bin/msmtp \
|
2017-03-08 08:35:33 +01:00
|
|
|
--replace @nc@ ${netcat-gnu}/bin/nc \
|
2017-02-23 08:57:53 +01:00
|
|
|
--replace @journal@ ${journal} \
|
|
|
|
${lib.optionalString (journal == "y") "--replace @systemdcat@ ${systemd}/bin/systemd-cat" } \
|
|
|
|
--replace @test@ ${tester}
|
|
|
|
|
|
|
|
substitute scripts/msmtpq/msmtp-queue $out/bin/msmtp-queue \
|
|
|
|
--replace @msmtpq@ $out/bin/msmtpq
|
|
|
|
|
2017-11-18 01:09:43 +01:00
|
|
|
ln -s msmtp $out/bin/sendmail
|
|
|
|
|
2017-02-23 08:57:53 +01:00
|
|
|
chmod +x $out/bin/*
|
2015-01-09 17:31:10 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-02-23 08:57:53 +01:00
|
|
|
description = "Simple and easy to use SMTP client with excellent sendmail compatibility";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://marlam.de/msmtp/";
|
2018-12-16 19:06:23 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2019-07-03 11:27:39 +02:00
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
2017-02-23 08:57:53 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2007-09-03 14:10:57 +02:00
|
|
|
}
|