aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/libressl
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2017-06-02 16:21:35 +0200
committerVladimír Čunát <vcunat@gmail.com>2017-06-02 16:21:35 +0200
commited93e8e16b57578e37aaefca0da941de6e3026fe (patch)
tree168bd9457ae1c2632faeb082c0035252c043f5a4 /pkgs/development/libraries/libressl
parentb0da92ddf2b9f30ddeb4e518e6b77a6628b6b458 (diff)
libressl: work around some problem with man pages
https://github.com/NixOS/nixpkgs/commit/20ffc3cd73#commitcomment-22368612
Diffstat (limited to 'pkgs/development/libraries/libressl')
-rw-r--r--pkgs/development/libraries/libressl/2.5.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libressl/2.5.nix b/pkgs/development/libraries/libressl/2.5.nix
index 2284db5ad7d2..6ab072486553 100644
--- a/pkgs/development/libraries/libressl/2.5.nix
+++ b/pkgs/development/libraries/libressl/2.5.nix
@@ -13,6 +13,8 @@ stdenv.mkDerivation rec {
outputs = [ "bin" "dev" "out" "man" ];
+ dontGzipMan = if stdenv.isDarwin then true else null; # not sure what's wrong
+
meta = with stdenv.lib; {
description = "Free TLS/SSL implementation";
homepage = "http://www.libressl.org";