nixpkgs-suyu/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-03-19 22:59:17 +01:00
version = "0.9.1";
2020-12-14 01:08:14 +01:00
src = fetchFromGitHub {
owner = "simdjson";
repo = "simdjson";
rev = "v${version}";
2021-03-19 22:59:17 +01:00
sha256 = "sha256-e9Y5QEs9xqfJpaWxnA6iFwHE6TTGyVM7hfFuMEmpW78=";
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 ];
};
}