summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-12-01 00:43:02 +0000
committerGitHub <noreply@github.com>2018-12-01 00:43:02 +0000
commit84162175a3ff1b9649b65b5201c063a51cd40368 (patch)
tree42ebad1a88d0b1bfe8fab54f815841a1e12ea342 /pkgs/tools
parent3a3513e7e7d4c252d6240a62d377ef723509d8c0 (diff)
parent694b4d29e1d0e4c86d497da437a3eed90910a7db (diff)
downloadnixpkgs-84162175a3ff1b9649b65b5201c063a51cd40368.tar
nixpkgs-84162175a3ff1b9649b65b5201c063a51cd40368.tar.gz
nixpkgs-84162175a3ff1b9649b65b5201c063a51cd40368.tar.bz2
nixpkgs-84162175a3ff1b9649b65b5201c063a51cd40368.tar.lz
nixpkgs-84162175a3ff1b9649b65b5201c063a51cd40368.tar.xz
nixpkgs-84162175a3ff1b9649b65b5201c063a51cd40368.tar.zst
nixpkgs-84162175a3ff1b9649b65b5201c063a51cd40368.zip
Merge pull request #51180 from mayflower/xorg-cross
treewide: cross-fixes
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/ssmtp/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/tools/networking/ssmtp/default.nix b/pkgs/tools/networking/ssmtp/default.nix
index 24e96491f9d..4c906812f64 100644
--- a/pkgs/tools/networking/ssmtp/default.nix
+++ b/pkgs/tools/networking/ssmtp/default.nix
@@ -26,6 +26,8 @@ stdenv.mkDerivation {
       sed -e '/INSTALLED_CONFIGURATION_FILE/d' \
           -e 's|/lib/sendmail|$(TMPDIR)/sendmail|' \
           -i Makefile
+      substituteInPlace Makefile \
+        --replace '$(INSTALL) -s' '$(INSTALL) -s --strip-program $(STRIP)'
     '';
 
   installFlags = "etcdir=$(out)/etc";