nixpkgs/pkgs/development/libraries/simdjson/default.nix

28 lines
684 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake }:
2020-12-14 01:08:14 +01:00
stdenv.mkDerivation rec {
pname = "simdjson";
2021-09-14 08:02:47 +02:00
version = "1.0.0";
2020-12-14 01:08:14 +01:00
src = fetchFromGitHub {
owner = "simdjson";
repo = "simdjson";
rev = "v${version}";
2021-09-14 08:02:47 +02:00
sha256 = "sha256-4I3w3sZRBdHVpUP0O7H7LGUM5uInyrSeHTe5ov5Qcyc=";
2020-12-14 01:08:14 +01:00
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [
"-DSIMDJSON_JUST_LIBRARY=ON"
2021-01-23 13:11:14 +01:00
] ++ lib.optional stdenv.hostPlatform.isStatic "-DSIMDJSON_BUILD_STATIC=ON";
2020-12-14 01:08:14 +01:00
meta = with lib; {
2020-12-14 01:08:14 +01:00
homepage = "https://simdjson.org/";
description = "Parsing gigabytes of JSON per second";
license = licenses.asl20;
platforms = platforms.all;
maintainers = with maintainers; [ chessai ];
};
}