about summary refs log tree commit diff
path: root/pkgs/development/libraries/libwhereami
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-07-04 18:17:46 -0500
committerGitHub <noreply@github.com>2020-07-04 18:17:46 -0500
commitb0d53b7fe523a6c5e7836b98a5b9fb08267bdb6e (patch)
tree6cbbbcf86cf704279d5e0959af5d10bd2553e979 /pkgs/development/libraries/libwhereami
parent6eeb612a9b6160df2e110021d93bef3e6e538b9a (diff)
parent951a5bcc7ab91d2a57b2322a777212b5feb2c6bc (diff)
Merge pull request #92290 from marsam/enable-facter-darwin
facter: enable on darwin
Diffstat (limited to 'pkgs/development/libraries/libwhereami')
-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 9238827d70eab..59e349b4e6a17 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
   };
 
 }