summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-07-04 04:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-07-04 04:20:00 -0500
commitb3f0d9da9ab5b8c3b9f7e746d90eb91d5edf3c6f (patch)
tree52591ebb60d527083024c96236319fe665dae895
parentdc80d7bc4a244120b3d766746c41c0d9c5f81dfa (diff)
downloadnixpkgs-b3f0d9da9ab5b8c3b9f7e746d90eb91d5edf3c6f.tar
nixpkgs-b3f0d9da9ab5b8c3b9f7e746d90eb91d5edf3c6f.tar.gz
nixpkgs-b3f0d9da9ab5b8c3b9f7e746d90eb91d5edf3c6f.tar.bz2
nixpkgs-b3f0d9da9ab5b8c3b9f7e746d90eb91d5edf3c6f.tar.lz
nixpkgs-b3f0d9da9ab5b8c3b9f7e746d90eb91d5edf3c6f.tar.xz
nixpkgs-b3f0d9da9ab5b8c3b9f7e746d90eb91d5edf3c6f.tar.zst
nixpkgs-b3f0d9da9ab5b8c3b9f7e746d90eb91d5edf3c6f.zip
libwhereami: enable on darwin
-rw-r--r--pkgs/development/libraries/libwhereami/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libwhereami/default.nix b/pkgs/development/libraries/libwhereami/default.nix
index 8e190f998d5..0e580d8fa85 100644
--- a/pkgs/development/libraries/libwhereami/default.nix
+++ b/pkgs/development/libraries/libwhereami/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
     owner = "puppetlabs";
   };
 
-  NIX_CFLAGS_COMPILE = "-Wno-error=catch-value";
+  NIX_CFLAGS_COMPILE = "-Wno-error";
 
   nativeBuildInputs = [ cmake ];
 
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
     description = "Library to report hypervisor information from inside a VM";
     license = licenses.asl20;
     maintainers = [ maintainers.womfoo ];
-    platforms = with platforms; [ "i686-linux" "x86_64-linux" ]; # fails on aarch64
+    platforms = with platforms; [ "i686-linux" "x86_64-linux" "x86_64-darwin" ]; # fails on aarch64
   };
 
 }