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

28 lines
685 B
Nix
Raw Normal View History

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