nixpkgs/pkgs/development/libraries/pugixml/default.nix

39 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, fetchpatch, cmake, shared ? false }:
2015-09-08 11:52:44 +00:00
stdenv.mkDerivation rec {
pname = "pugixml";
2018-04-06 19:20:56 +00:00
version = "1.9";
2015-09-08 11:52:44 +00:00
2019-03-02 11:07:52 +00:00
src = fetchFromGitHub {
owner = "zeux";
repo = "pugixml";
rev = "v${version}";
sha256 = "0iraznwm78pyyzc9snvd3dyz8gddvmxsm1b3kpw7wixkvcawdviv";
2015-09-08 11:52:44 +00:00
};
patches = [
# To be removed after a version newer than 1.9 is released
(fetchpatch {
url = "https://github.com/zeux/pugixml/pull/193.patch";
sha256 = "0s4anqlr2ppfibxyl29nrqbcprrg89k7il6303dm91s6620ydmka";
})
];
2015-09-08 11:52:44 +00:00
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-DBUILD_SHARED_LIBS=${if shared then "ON" else "OFF"}" ];
2015-09-08 11:52:44 +00:00
preConfigure = ''
# Enable long long support (required for filezilla)
2016-12-11 20:15:14 +00:00
sed -ire '/PUGIXML_HAS_LONG_LONG/ s/^\/\///' src/pugiconfig.hpp
2015-09-08 11:52:44 +00:00
'';
meta = with stdenv.lib; {
description = "Light-weight, simple and fast XML parser for C++ with XPath support";
homepage = "https://pugixml.org";
2015-09-08 11:52:44 +00:00
license = licenses.mit;
maintainers = with maintainers; [ pSub ];
2016-11-21 18:39:12 +00:00
platforms = platforms.unix;
2015-09-08 11:52:44 +00:00
};
}