summary refs log tree commit diff
path: root/pkgs/development/libraries/leatherman
diff options
context:
space:
mode:
authorKranium Gikos Mendoza <kranium@gikos.net>2016-08-01 19:20:45 +0800
committerKranium Gikos Mendoza <kranium@gikos.net>2016-08-01 19:20:45 +0800
commit7f3ca5d75b351cebf284aa2ab4d5ac01920b67d0 (patch)
tree9d3cd48a5c7e4e0963df467efd039927d5ee3613 /pkgs/development/libraries/leatherman
parent8c735c3aee87ec6908e91f651bfad2b7fa067146 (diff)
downloadnixpkgs-7f3ca5d75b351cebf284aa2ab4d5ac01920b67d0.tar
nixpkgs-7f3ca5d75b351cebf284aa2ab4d5ac01920b67d0.tar.gz
nixpkgs-7f3ca5d75b351cebf284aa2ab4d5ac01920b67d0.tar.bz2
nixpkgs-7f3ca5d75b351cebf284aa2ab4d5ac01920b67d0.tar.lz
nixpkgs-7f3ca5d75b351cebf284aa2ab4d5ac01920b67d0.tar.xz
nixpkgs-7f3ca5d75b351cebf284aa2ab4d5ac01920b67d0.tar.zst
nixpkgs-7f3ca5d75b351cebf284aa2ab4d5ac01920b67d0.zip
leatherman: disable curl test to fix build
Diffstat (limited to 'pkgs/development/libraries/leatherman')
-rw-r--r--pkgs/development/libraries/leatherman/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/libraries/leatherman/default.nix b/pkgs/development/libraries/leatherman/default.nix
index 3dfc9e2990e..a4b007fa399 100644
--- a/pkgs/development/libraries/leatherman/default.nix
+++ b/pkgs/development/libraries/leatherman/default.nix
@@ -13,6 +13,10 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ boost cmake curl ];
 
+  # curl upgrade to 7.50.0 (#17152) broke the curl mock tests, disabling for now
+  # upstream bug raised https://tickets.puppetlabs.com/browse/LTH-108
+  cmakeFlags = [ "-DLEATHERMAN_MOCK_CURL=OFF" ];
+
   meta = with stdenv.lib; {
     homepage = https://github.com/puppetlabs/leatherman/;  
     description = "A collection of C++ and CMake utility libraries";