mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
msmtp: install docs and examples (#31769)
* msmtp: install docs and examples * msmtp: nitpick
This commit is contained in:
parent
eb85761137
commit
7c737cb506
1 changed files with 6 additions and 1 deletions
|
@ -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 \
|
||||
|
|
Loading…
Reference in a new issue