summary refs log tree commit diff
path: root/pkgs/development/libraries/leatherman
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-07-04 04:21:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-07-04 04:21:00 -0500
commit3d88d16458cec0ceac64b8b8652c1c0ee255666e (patch)
tree25e2edd90ca7d684db085abc306f71427d08dce2 /pkgs/development/libraries/leatherman
parentb3f0d9da9ab5b8c3b9f7e746d90eb91d5edf3c6f (diff)
downloadnixpkgs-3d88d16458cec0ceac64b8b8652c1c0ee255666e.tar
nixpkgs-3d88d16458cec0ceac64b8b8652c1c0ee255666e.tar.gz
nixpkgs-3d88d16458cec0ceac64b8b8652c1c0ee255666e.tar.bz2
nixpkgs-3d88d16458cec0ceac64b8b8652c1c0ee255666e.tar.lz
nixpkgs-3d88d16458cec0ceac64b8b8652c1c0ee255666e.tar.xz
nixpkgs-3d88d16458cec0ceac64b8b8652c1c0ee255666e.tar.zst
nixpkgs-3d88d16458cec0ceac64b8b8652c1c0ee255666e.zip
leatherman: enable on darwin
Diffstat (limited to 'pkgs/development/libraries/leatherman')
-rw-r--r--pkgs/development/libraries/leatherman/default.nix9
1 files changed, 2 insertions, 7 deletions
diff --git a/pkgs/development/libraries/leatherman/default.nix b/pkgs/development/libraries/leatherman/default.nix
index 8a34f05f6cf..95226504495 100644
--- a/pkgs/development/libraries/leatherman/default.nix
+++ b/pkgs/development/libraries/leatherman/default.nix
@@ -11,12 +11,7 @@ stdenv.mkDerivation rec {
     owner = "puppetlabs";
   };
 
-  NIX_CFLAGS_COMPILE = builtins.toString [
-    "-Wno-error=ignored-qualifiers"
-    "-Wno-error=class-memaccess"
-    "-Wno-error=catch-value"
-    "-Wno-error=deprecated-copy"
-  ];
+  NIX_CFLAGS_COMPILE = "-Wno-error";
 
   nativeBuildInputs = [ cmake ];
   buildInputs = [ boost curl ruby ];
@@ -28,7 +23,7 @@ stdenv.mkDerivation rec {
     description = "A collection of C++ and CMake utility libraries";
     license = licenses.asl20;
     maintainers = [ maintainers.womfoo ];
-    platforms = platforms.linux;
+    platforms = platforms.unix;
   };
 
 }