linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / simdjson / default.nix
blobefa007da902e1be6985ab973b8231dfb038ac378
1 { lib, stdenv, fetchFromGitHub, cmake }:
3 stdenv.mkDerivation rec {
4   pname = "simdjson";
5   version = "0.9.2";
7   src = fetchFromGitHub {
8     owner = "simdjson";
9     repo = "simdjson";
10     rev = "v${version}";
11     sha256 = "sha256-L/a/vTthh7XkiwuvlGk9q+uLEBf8vaPoV1x1fG44zeg=";
12   };
14   nativeBuildInputs = [ cmake ];
16   cmakeFlags = [
17     "-DSIMDJSON_JUST_LIBRARY=ON"
18   ] ++ lib.optional stdenv.hostPlatform.isStatic "-DSIMDJSON_BUILD_STATIC=ON";
20   meta = with lib; {
21     homepage = "https://simdjson.org/";
22     description = "Parsing gigabytes of JSON per second";
23     license = licenses.asl20;
24     platforms = platforms.all;
25     maintainers = with maintainers; [ chessai ];
26   };