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

34 lines
959 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, shared ? false }:
2015-09-08 13:52:44 +02:00
stdenv.mkDerivation rec {
name = "pugixml-${version}";
2015-11-04 20:42:07 +01:00
version = "1.7";
2015-09-08 13:52:44 +02:00
src = fetchurl {
url = "https://github.com/zeux/pugixml/releases/download/v${version}/${name}.tar.gz";
2015-11-04 20:42:07 +01:00
sha256 = "1jpml475kbhs1aqwa48g2cbfxlrb9qp115m2j9yryxhxyr30vqgv";
2015-09-08 13:52:44 +02:00
};
nativeBuildInputs = [ cmake ];
sourceRoot = "${name}/scripts";
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)
sed -ire '/PUGIXML_HAS_LONG_LONG/ s/^\/\///' ../src/pugiconfig.hpp
'';
2016-11-21 19:39:12 +01:00
patches = []
++ stdenv.lib.optionals stdenv.isDarwin [ ./no-long-long.patch ];
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";
homepage = http://pugixml.org/;
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
};
}