msmtp: install docs and examples (#31769)
* msmtp: install docs and examples * msmtp: nitpick
This commit is contained in:
parent
eb85761137
commit
7c737cb506
@ -8,7 +8,8 @@ let
|
|||||||
journal = if stdenv.isLinux then "y" else "n";
|
journal = if stdenv.isLinux then "y" else "n";
|
||||||
|
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
name = "msmtp-${version}";
|
pname = "msmtp";
|
||||||
|
name = "${pname}-${version}";
|
||||||
version = "1.6.6";
|
version = "1.6.6";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
@ -30,6 +31,10 @@ in stdenv.mkDerivation rec {
|
|||||||
stdenv.lib.optional stdenv.isDarwin [ "--with-macosx-keyring" ];
|
stdenv.lib.optional stdenv.isDarwin [ "--with-macosx-keyring" ];
|
||||||
|
|
||||||
postInstall = ''
|
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 \
|
substitute scripts/msmtpq/msmtpq $out/bin/msmtpq \
|
||||||
--replace @msmtp@ $out/bin/msmtp \
|
--replace @msmtp@ $out/bin/msmtp \
|
||||||
--replace @nc@ ${netcat-gnu}/bin/nc \
|
--replace @nc@ ${netcat-gnu}/bin/nc \
|
||||||
|
Loading…
Reference in New Issue
Block a user