biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / redpanda / rapidjson.nix
blob99ada8c05f88ed71a540baba2dfd86f5a592fb8f
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
3 { clangStdenv
4 , cmake
5 , fetchFromGitHub
6 , lib
7 , pkg-config
8 }:
10 clangStdenv.mkDerivation rec {
11   pname = "rapidjson";
12   version = "1.1.1";
14   src = fetchFromGitHub {
15     owner = "redpanda-data";
16     repo = "rapidjson";
17     rev = "27c3a8dc0e2c9218fe94986d249a12b5ed838f1d";
18     sha256 = "sha256-wggyCL5uEsnJDxkYAUsXOjoO1MNQBGB05E6aSpsNcl0=";
19   };
21   nativeBuildInputs = [ pkg-config cmake ];
23   doCheck = false;
25   meta = with lib; {
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;
31   };