mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
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:
parent
db2deb137e
commit
3f13584af6
@ -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 ];
|
||||
|
Loading…
Reference in New Issue
Block a user