about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/redpanda/rapidjson.nix
blob: 99ada8c05f88ed71a540baba2dfd86f5a592fb8f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# rapidjson used in nixpkgs is too old. Although it is technically a latest release, it was made in 2016.
# Redpanda uses its own version
{ clangStdenv
, cmake
, fetchFromGitHub
, lib
, pkg-config
}:

clangStdenv.mkDerivation rec {
  pname = "rapidjson";
  version = "1.1.1";

  src = fetchFromGitHub {
    owner = "redpanda-data";
    repo = "rapidjson";
    rev = "27c3a8dc0e2c9218fe94986d249a12b5ed838f1d";
    sha256 = "sha256-wggyCL5uEsnJDxkYAUsXOjoO1MNQBGB05E6aSpsNcl0=";
  };

  nativeBuildInputs = [ pkg-config cmake ];

  doCheck = false;

  meta = with lib; {
    description = "Fast JSON parser/generator for C++ with both SAX/DOM style API";
    homepage = "http://rapidjson.org/";
    maintainers = with maintainers; [ avakhrenev ];
    license = licenses.mit;
    platforms = platforms.unix;
  };
}