summary refs log tree commit diff
path: root/pkgs/tools/networking/stunnel
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2018-12-14 08:19:39 +0000
committerJörg Thalheim <joerg@thalheim.io>2018-12-14 08:19:39 +0000
commit1122901b973f1c741d30f02c79ab4e1318b1b3a7 (patch)
treeda65040514390a61cc6656bed95d43346a923867 /pkgs/tools/networking/stunnel
parent19e14c44f0305b7e9be24a93c062349d5d4a6ee7 (diff)
downloadnixpkgs-1122901b973f1c741d30f02c79ab4e1318b1b3a7.tar
nixpkgs-1122901b973f1c741d30f02c79ab4e1318b1b3a7.tar.gz
nixpkgs-1122901b973f1c741d30f02c79ab4e1318b1b3a7.tar.bz2
nixpkgs-1122901b973f1c741d30f02c79ab4e1318b1b3a7.tar.lz
nixpkgs-1122901b973f1c741d30f02c79ab4e1318b1b3a7.tar.xz
nixpkgs-1122901b973f1c741d30f02c79ab4e1318b1b3a7.tar.zst
nixpkgs-1122901b973f1c741d30f02c79ab4e1318b1b3a7.zip
stunnel: remove stunnel3 wrapper
Diffstat (limited to 'pkgs/tools/networking/stunnel')
-rw-r--r--pkgs/tools/networking/stunnel/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/tools/networking/stunnel/default.nix b/pkgs/tools/networking/stunnel/default.nix
index 4bbcb7beacd..e00b5335d35 100644
--- a/pkgs/tools/networking/stunnel/default.nix
+++ b/pkgs/tools/networking/stunnel/default.nix
@@ -18,6 +18,11 @@ stdenv.mkDerivation rec {
     "--localstatedir=/var"
   ];
 
+  postInstall = ''
+    # remove legacy compatibility-wrapper that would require perl
+    rm $out/bin/stunnel3
+  '';
+
   installFlags = [
     "sysconfdir=\${out}/etc"
     "localstatedir=\${TMPDIR}"