summary refs log tree commit diff
path: root/pkgs/development/libraries/leatherman
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2019-01-11 11:57:31 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2019-06-17 07:25:54 +0200
commit3212dc84a99f57cc3fe45a48219e7ee2ee0f8105 (patch)
tree8eca3ce192286adc28a18c6b152ef6f19857bc9b /pkgs/development/libraries/leatherman
parentbc87c138d02b87625500f764b0d27696b73a0b9e (diff)
downloadnixpkgs-3212dc84a99f57cc3fe45a48219e7ee2ee0f8105.tar
nixpkgs-3212dc84a99f57cc3fe45a48219e7ee2ee0f8105.tar.gz
nixpkgs-3212dc84a99f57cc3fe45a48219e7ee2ee0f8105.tar.bz2
nixpkgs-3212dc84a99f57cc3fe45a48219e7ee2ee0f8105.tar.lz
nixpkgs-3212dc84a99f57cc3fe45a48219e7ee2ee0f8105.tar.xz
nixpkgs-3212dc84a99f57cc3fe45a48219e7ee2ee0f8105.tar.zst
nixpkgs-3212dc84a99f57cc3fe45a48219e7ee2ee0f8105.zip
leatherman: 1.5.3 -> 1.5.4, fix build with gcc8
Diffstat (limited to 'pkgs/development/libraries/leatherman')
-rw-r--r--pkgs/development/libraries/leatherman/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/libraries/leatherman/default.nix b/pkgs/development/libraries/leatherman/default.nix
index 9ab68e578fb..6a20afe4c6d 100644
--- a/pkgs/development/libraries/leatherman/default.nix
+++ b/pkgs/development/libraries/leatherman/default.nix
@@ -11,7 +11,10 @@ stdenv.mkDerivation rec {
     owner = "puppetlabs";
   };
 
-  buildInputs = [ boost cmake curl ruby ];
+  NIX_CFLAGS_COMPILE = [ "-Wno-error=ignored-qualifiers" "-Wno-error=class-memaccess" "-Wno-error=catch-value" ];
+
+  nativeBuildInputs = [ cmake ];
+  buildInputs = [ boost curl ruby ];
 
   enableParallelBuilding = true;