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

29 lines
781 B
Nix
Raw Normal View History

2015-09-08 11:52:44 +00:00
{ stdenv, fetchurl, cmake }:
stdenv.mkDerivation rec {
name = "pugixml-${version}";
2015-11-04 19:42:07 +00:00
version = "1.7";
2015-09-08 11:52:44 +00:00
src = fetchurl {
url = "https://github.com/zeux/pugixml/releases/download/v${version}/${name}.tar.gz";
2015-11-04 19:42:07 +00:00
sha256 = "1jpml475kbhs1aqwa48g2cbfxlrb9qp115m2j9yryxhxyr30vqgv";
2015-09-08 11:52:44 +00:00
};
nativeBuildInputs = [ cmake ];
sourceRoot = "${name}/scripts";
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;
};
}