cpp-hocon: enable on darwin

This commit is contained in:
Mario Rodas 2020-07-04 04:22:00 -05:00
parent 3d88d16458
commit 2380e153a3
No known key found for this signature in database
GPG key ID: 325649BCA6D53027

View file

@ -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;
};
}