libxmlxx: code predates c++17, use -std=c++11; fix darwin

code from is from 2015
https://download.gnome.org/sources/libxml++/2.40/
This commit is contained in:
annalee 2023-11-26 09:31:01 +00:00
parent db2deb137e
commit 3f13584af6
No known key found for this signature in database

View File

@ -9,6 +9,11 @@ stdenv.mkDerivation rec {
sha256 = "1sb3akryklvh2v6m6dihdnbpf1lkx441v972q9hlz1sq6bfspm2a";
};
configureFlags = [
# remove if library is updated
"CXXFLAGS=-std=c++11"
];
outputs = [ "out" "devdoc" ];
nativeBuildInputs = [ pkg-config perl ];