mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
rapidxml: init at 1.13
This commit is contained in:
parent
d73bc6d06a
commit
a4f5bb8f58
2 changed files with 29 additions and 0 deletions
27
pkgs/development/libraries/rapidxml/default.nix
Normal file
27
pkgs/development/libraries/rapidxml/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{ stdenv, fetchurl, unzip }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "rapidxml";
|
||||||
|
version = "1.13";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/${pname}/${name}.zip";
|
||||||
|
sha256 = "0w9mbdgshr6sh6a5jr10lkdycjyvapbj7wxwz8hbp0a96y3biw63";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ unzip ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/include/${pname}
|
||||||
|
cp * $out/include/${pname}
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Fast XML DOM-style parser in C++";
|
||||||
|
homepage = "http://rapidxml.sourceforge.net/";
|
||||||
|
license = licenses.boost;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ cpages ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -12363,6 +12363,8 @@ in
|
||||||
|
|
||||||
rapidjson = callPackage ../development/libraries/rapidjson {};
|
rapidjson = callPackage ../development/libraries/rapidjson {};
|
||||||
|
|
||||||
|
rapidxml = callPackage ../development/libraries/rapidxml {};
|
||||||
|
|
||||||
raul = callPackage ../development/libraries/audio/raul { };
|
raul = callPackage ../development/libraries/audio/raul { };
|
||||||
|
|
||||||
readline = readline6;
|
readline = readline6;
|
||||||
|
|
Loading…
Reference in a new issue