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

29 lines
856 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, shared ? false }:
2015-09-08 11:52:44 +00:00
stdenv.mkDerivation rec {
name = "pugixml-${version}";
2018-04-06 19:20:56 +00:00
version = "1.9";
2015-09-08 11:52:44 +00:00
src = fetchurl {
url = "https://github.com/zeux/pugixml/releases/download/v${version}/${name}.tar.gz";
2018-04-06 19:20:56 +00:00
sha256 = "19nv3zhik3djp4blc4vrjwrl8dfhzmal8b21sq7y907nhddx6mni";
2015-09-08 11:52:44 +00:00
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-DBUILD_SHARED_LIBS=${if shared then "ON" else "OFF"} -DBUILD_PKGCONFIG=ON" ];
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
};
}