2017-07-25 01:05:56 +01:00
|
|
|
{ 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 ];
|
|
|
|
|
2018-03-08 10:42:30 +00:00
|
|
|
# detected by gcc7
|
|
|
|
NIX_CFLAGS_COMPILE = [ "-Wno-error=implicit-fallthrough" ];
|
|
|
|
|
2017-07-25 01:05:56 +01:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|