pugixml: init at 1.6
This commit is contained in:
parent
7ed4046d90
commit
c3f33be3ab
28
pkgs/development/libraries/pugixml/default.nix
Normal file
28
pkgs/development/libraries/pugixml/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ stdenv, fetchurl, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pugixml-${version}";
|
||||
version = "1.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/zeux/pugixml/releases/download/v${version}/${name}.tar.gz";
|
||||
sha256 = "1pnrdi8n9fdclmhxri3jwc6xwpgvblbjnqkk9ykycpnljv20ads7";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
@ -7968,6 +7968,8 @@ let
|
||||
|
||||
ptlib = callPackage ../development/libraries/ptlib {};
|
||||
|
||||
pugixml = callPackage ../development/libraries/pugixml { };
|
||||
|
||||
re2 = callPackage ../development/libraries/re2 { };
|
||||
|
||||
qca2 = callPackage ../development/libraries/qca2 { qt = qt4; };
|
||||
|
Loading…
Reference in New Issue
Block a user