summary refs log tree commit diff
path: root/pkgs/development/libraries/libressl
diff options
context:
space:
mode:
authorMatthew Justin Bauer <mjbauer95@gmail.com>2018-04-29 15:14:34 -0500
committerGitHub <noreply@github.com>2018-04-29 15:14:34 -0500
commite8672c8b3751622c5d603bc7bb144377d1d3498c (patch)
treec6fd25f79c0f3f88c452f6dcb303accb5fabaea5 /pkgs/development/libraries/libressl
parent5e06ec7ab865e6c81d3f37eb0e8b224dce53c3f8 (diff)
libressl: fix eval
Diffstat (limited to 'pkgs/development/libraries/libressl')
-rw-r--r--pkgs/development/libraries/libressl/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libressl/default.nix b/pkgs/development/libraries/libressl/default.nix
index b65c813f230f5..51162979e6301 100644
--- a/pkgs/development/libraries/libressl/default.nix
+++ b/pkgs/development/libraries/libressl/default.nix
@@ -19,7 +19,7 @@ let
 
     postFixup = ''
       moveToOutput "bin/nc" "$nc"
-      moveToOutput "share/man/man1/nc.1${lib.optionalString (!dontGzipMan) ".gz"}" "$nc"
+      moveToOutput "share/man/man1/nc.1${lib.optionalString (dontGzipMan==null) ".gz"}" "$nc"
     '';
 
     dontGzipMan = if stdenv.isDarwin then true else null; # not sure what's wrong