summary refs log tree commit diff
path: root/pkgs/development/libraries/libressl
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2022-05-08 23:59:52 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2022-05-09 11:16:58 +0200
commit0d7637203e9be03281115e1cbabf3884ad33d0ac (patch)
tree124f7ae53c70f9334321da7dd42503153bc0d9c4 /pkgs/development/libraries/libressl
parent423aefc9c68ef31966f2fd792aa270e51d3ebeb9 (diff)
libressl: remove weird and old man compression workaround
Diffstat (limited to 'pkgs/development/libraries/libressl')
-rw-r--r--pkgs/development/libraries/libressl/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libressl/default.nix b/pkgs/development/libraries/libressl/default.nix
index 1ad63db733dfa..2462fab6c48f3 100644
--- a/pkgs/development/libraries/libressl/default.nix
+++ b/pkgs/development/libraries/libressl/default.nix
@@ -71,11 +71,9 @@ let
       moveToOutput "bin/nc" "$nc"
       moveToOutput "bin/openssl" "$bin"
       moveToOutput "bin/ocspcheck" "$bin"
-      moveToOutput "share/man/man1/nc.1${lib.optionalString (dontGzipMan==null) ".gz"}" "$nc"
+      moveToOutput "share/man/man1/nc.1.gz" "$nc"
     '';
 
-    dontGzipMan = if stdenv.isDarwin then true else null; # not sure what's wrong
-
     meta = with lib; {
       description = "Free TLS/SSL implementation";
       homepage    = "https://www.libressl.org";