summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-07-04 04:22:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-07-04 04:22:00 -0500
commit2380e153a324eb87acc4591e68f27cd6923df76a (patch)
tree58bd8c03f335ce5acfd5adbc89e858eb2f95c592
parent3d88d16458cec0ceac64b8b8652c1c0ee255666e (diff)
downloadnixpkgs-2380e153a324eb87acc4591e68f27cd6923df76a.tar
nixpkgs-2380e153a324eb87acc4591e68f27cd6923df76a.tar.gz
nixpkgs-2380e153a324eb87acc4591e68f27cd6923df76a.tar.bz2
nixpkgs-2380e153a324eb87acc4591e68f27cd6923df76a.tar.lz
nixpkgs-2380e153a324eb87acc4591e68f27cd6923df76a.tar.xz
nixpkgs-2380e153a324eb87acc4591e68f27cd6923df76a.tar.zst
nixpkgs-2380e153a324eb87acc4591e68f27cd6923df76a.zip
cpp-hocon: enable on darwin
-rw-r--r--pkgs/development/libraries/cpp-hocon/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/cpp-hocon/default.nix b/pkgs/development/libraries/cpp-hocon/default.nix
index 00399616d9a..47ec7a1a6eb 100644
--- a/pkgs/development/libraries/cpp-hocon/default.nix
+++ b/pkgs/development/libraries/cpp-hocon/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 ];
 
@@ -21,10 +21,10 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     inherit (src.meta) homepage;
-    description = " A C++ port of the Typesafe Config library";
+    description = "A C++ port of the Typesafe Config library";
     license = licenses.asl20;
     maintainers = [ maintainers.womfoo ];
-    platforms = platforms.linux;
+    platforms = platforms.unix;
   };
 
 }