mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 06:27:43 +00:00
rapidjson: init at 1.1.0
A fast JSON parser/generator for C++ with both SAX/DOM style API. See: http://rapidjson.org/
This commit is contained in:
parent
cd2b6a94f7
commit
4fcc6da889
23
pkgs/development/libraries/rapidjson/default.nix
Normal file
23
pkgs/development/libraries/rapidjson/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, lib, fetchFromGitHub, pkgconfig, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "rapidjson-${version}";
|
||||
version = "1.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "miloyip";
|
||||
repo = "rapidjson";
|
||||
rev = "v${version}";
|
||||
sha256 = "1jixgb8w97l9gdh3inihz7avz7i770gy2j2irvvlyrq3wi41f5ab";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig cmake ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Fast JSON parser/generator for C++ with both SAX/DOM style API";
|
||||
homepage = "http://rapidjson.org/";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ cstrahan ];
|
||||
};
|
||||
}
|
@ -10065,6 +10065,8 @@ with pkgs;
|
||||
|
||||
rabbitmq-java-client = callPackage ../development/libraries/rabbitmq-java-client {};
|
||||
|
||||
rapidjson = callPackage ../development/libraries/rapidjson {};
|
||||
|
||||
raul = callPackage ../development/libraries/audio/raul { };
|
||||
|
||||
readline = readline6;
|
||||
|
Loading…
Reference in New Issue
Block a user