msmtp: install docs and examples (#31769)

* msmtp: install docs and examples

* msmtp: nitpick
This commit is contained in:
Florian Klink 2017-11-17 17:35:01 +01:00 committed by Jörg Thalheim
parent eb85761137
commit 7c737cb506

View file

@ -8,7 +8,8 @@ let
journal = if stdenv.isLinux then "y" else "n";
in stdenv.mkDerivation rec {
name = "msmtp-${version}";
pname = "msmtp";
name = "${pname}-${version}";
version = "1.6.6";
src = fetchurl {
@ -30,6 +31,10 @@ in stdenv.mkDerivation rec {
stdenv.lib.optional stdenv.isDarwin [ "--with-macosx-keyring" ];
postInstall = ''
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}
substitute scripts/msmtpq/msmtpq $out/bin/msmtpq \
--replace @msmtp@ $out/bin/msmtp \
--replace @nc@ ${netcat-gnu}/bin/nc \