2022-06-11 05:47:13 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
|
|
|
, pkg-config
|
|
|
|
, cmake
|
|
|
|
, gtest
|
|
|
|
}:
|
2017-07-25 01:05:56 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "rapidjson";
|
2017-07-25 01:05:56 +01:00
|
|
|
version = "1.1.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "miloyip";
|
|
|
|
repo = "rapidjson";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1jixgb8w97l9gdh3inihz7avz7i770gy2j2irvvlyrq3wi41f5ab";
|
|
|
|
};
|
|
|
|
|
2021-04-22 17:10:29 +01:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://src.fedoraproject.org/rpms/rapidjson/raw/48402da9f19d060ffcd40bf2b2e6987212c58b0c/f/rapidjson-1.1.0-c++20.patch";
|
|
|
|
sha256 = "1qm62iad1xfsixv1li7qy475xc7gc04hmi2q21qdk6l69gk7mf82";
|
|
|
|
})
|
2022-06-11 05:47:13 +01:00
|
|
|
(fetchpatch {
|
|
|
|
url = "https://git.alpinelinux.org/aports/plain/community/rapidjson/do-not-include-gtest-src-dir.patch";
|
|
|
|
hash = "sha256-BjSZEwfCXA/9V+kxQ/2JPWbc26jQn35CfN8+8NW24s4=";
|
|
|
|
})
|
2021-04-22 17:10:29 +01:00
|
|
|
];
|
|
|
|
|
2022-06-11 05:47:13 +01:00
|
|
|
postPatch = ''
|
|
|
|
find -name CMakeLists.txt | xargs \
|
|
|
|
sed -i -e "s/-Werror//g" -e "s/-march=native//g"
|
|
|
|
'';
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config cmake ];
|
2017-07-25 01:05:56 +01:00
|
|
|
|
2022-06-11 05:47:13 +01:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DGTEST_SOURCE_DIR=${gtest.dev}/include"
|
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
gtest
|
|
|
|
];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
|
|
|
|
|
|
|
ctest -E '.*valgrind.*'
|
|
|
|
|
|
|
|
runHook postCheck
|
2018-03-16 20:05:56 +00:00
|
|
|
'';
|
2018-03-08 10:42:30 +00:00
|
|
|
|
2022-06-11 05:47:13 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
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;
|
2018-03-16 20:05:56 +00:00
|
|
|
platforms = platforms.unix;
|
2022-06-11 05:47:13 +01:00
|
|
|
maintainers = with maintainers; [ cstrahan dotlambda ];
|
2017-07-25 01:05:56 +01:00
|
|
|
};
|
|
|
|
}
|