1 # rapidjson used in nixpkgs is too old. Although it is technically a latest release, it was made in 2016.
2 # Redpanda uses its own version
10 clangStdenv.mkDerivation rec {
14 src = fetchFromGitHub {
15 owner = "redpanda-data";
17 rev = "27c3a8dc0e2c9218fe94986d249a12b5ed838f1d";
18 sha256 = "sha256-wggyCL5uEsnJDxkYAUsXOjoO1MNQBGB05E6aSpsNcl0=";
21 nativeBuildInputs = [ pkg-config cmake ];
26 description = "Fast JSON parser/generator for C++ with both SAX/DOM style API";
27 homepage = "http://rapidjson.org/";
28 maintainers = with maintainers; [ avakhrenev ];
29 license = licenses.mit;
30 platforms = platforms.unix;