2019-03-02 11:13:26 +00:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch, cmake, shared ? false }:
|
2015-09-08 12:52:44 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "pugixml";
|
2018-04-06 20:20:56 +01:00
|
|
|
version = "1.9";
|
2015-09-08 12:52:44 +01:00
|
|
|
|
2019-03-02 11:07:52 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "zeux";
|
|
|
|
repo = "pugixml";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0iraznwm78pyyzc9snvd3dyz8gddvmxsm1b3kpw7wixkvcawdviv";
|
2015-09-08 12:52:44 +01:00
|
|
|
};
|
|
|
|
|
2019-03-02 11:13:26 +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 12:52:44 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2019-03-02 11:13:26 +00:00
|
|
|
cmakeFlags = [ "-DBUILD_SHARED_LIBS=${if shared then "ON" else "OFF"}" ];
|
2016-01-09 00:24:28 +00:00
|
|
|
|
2015-09-08 12:52:44 +01: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 12:52:44 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Light-weight, simple and fast XML parser for C++ with XPath support";
|
2017-08-22 19:50:04 +01:00
|
|
|
homepage = https://pugixml.org;
|
2015-09-08 12:52:44 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-11-21 18:39:12 +00:00
|
|
|
platforms = platforms.unix;
|
2015-09-08 12:52:44 +01:00
|
|
|
};
|
|
|
|
}
|