python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / simdjson / default.nix
blob5a4e82d815fc5f2146eb7346819b3d74f95b7ef3
1 { lib, stdenv, fetchFromGitHub, cmake }:
3 stdenv.mkDerivation rec {
4   pname = "simdjson";
5   version = "3.0.0";
7   src = fetchFromGitHub {
8     owner = "simdjson";
9     repo = "simdjson";
10     rev = "v${version}";
11     sha256 = "sha256-Ub0gHxnc4ljVqbAWuFJYBuhA4FjX4ypg1gaPXUrcWkE=";
12   };
14   nativeBuildInputs = [ cmake ];
16   cmakeFlags = [
17     "-DSIMDJSON_DEVELOPER_MODE=OFF"
18   ] ++ lib.optional stdenv.hostPlatform.isStatic "-DBUILD_SHARED_LIBS=OFF";
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   };