2016-01-09 01:24:28 +01:00
|
|
|
{ stdenv, fetchurl, cmake, shared ? false }:
|
2015-09-08 13:52:44 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "pugixml-${version}";
|
2016-12-11 21:15:14 +01:00
|
|
|
version = "1.8.1";
|
2015-09-08 13:52:44 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/zeux/pugixml/releases/download/v${version}/${name}.tar.gz";
|
2016-12-11 21:15:14 +01:00
|
|
|
sha256 = "0fcgggry5x5bn0zhb09ij9hb0p45nb0sv0d9fw3cm1cf62hp9n80";
|
2015-09-08 13:52:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2016-01-09 01:24:28 +01:00
|
|
|
cmakeFlags = [ "-DBUILD_SHARED_LIBS=${if shared then "ON" else "OFF"}" ];
|
|
|
|
|
2015-09-08 13:52:44 +02:00
|
|
|
preConfigure = ''
|
|
|
|
# Enable long long support (required for filezilla)
|
2016-12-11 21:15:14 +01:00
|
|
|
sed -ire '/PUGIXML_HAS_LONG_LONG/ s/^\/\///' src/pugiconfig.hpp
|
2015-09-08 13:52:44 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Light-weight, simple and fast XML parser for C++ with XPath support";
|
2017-08-22 20:50:04 +02:00
|
|
|
homepage = https://pugixml.org;
|
2015-09-08 13:52:44 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-11-21 19:39:12 +01:00
|
|
|
platforms = platforms.unix;
|
2015-09-08 13:52:44 +02:00
|
|
|
};
|
|
|
|
}
|