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

31 lines
874 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, shared ? false }:
2015-09-08 14:52:44 +03:00
stdenv.mkDerivation rec {
name = "pugixml-${version}";
2015-11-04 22:42:07 +03:00
version = "1.7";
2015-09-08 14:52:44 +03:00
src = fetchurl {
url = "https://github.com/zeux/pugixml/releases/download/v${version}/${name}.tar.gz";
2015-11-04 22:42:07 +03:00
sha256 = "1jpml475kbhs1aqwa48g2cbfxlrb9qp115m2j9yryxhxyr30vqgv";
2015-09-08 14:52:44 +03:00
};
nativeBuildInputs = [ cmake ];
sourceRoot = "${name}/scripts";
cmakeFlags = [ "-DBUILD_SHARED_LIBS=${if shared then "ON" else "OFF"}" ];
2015-09-08 14:52:44 +03:00
preConfigure = ''
# Enable long long support (required for filezilla)
sed -ire '/PUGIXML_HAS_LONG_LONG/ s/^\/\///' ../src/pugiconfig.hpp
'';
meta = with stdenv.lib; {
description = "Light-weight, simple and fast XML parser for C++ with XPath support";
homepage = http://pugixml.org/;
license = licenses.mit;
maintainers = with maintainers; [ pSub ];
platforms = platforms.linux;
};
}