Merge pull request #106861 from chessai/simdjson-init
simdjson: init at 0.7.0
This commit is contained in:
commit
8805a49d98
27
pkgs/development/libraries/simdjson/default.nix
Normal file
27
pkgs/development/libraries/simdjson/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ stdenv, fetchFromGitHub, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "simdjson";
|
||||
version = "0.7.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "simdjson";
|
||||
repo = "simdjson";
|
||||
rev = "v${version}";
|
||||
sha256 = "14gi2zq430nfjy424q6r57imc2gnz30nhx4r0wbajzp9qvna819w";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
cmakeFlags = [
|
||||
"-DSIMDJSON_JUST_LIBRARY=ON"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://simdjson.org/";
|
||||
description = "Parsing gigabytes of JSON per second";
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ chessai ];
|
||||
};
|
||||
}
|
@ -2577,6 +2577,8 @@ in
|
||||
|
||||
shell-hist = callPackage ../tools/misc/shell-hist { };
|
||||
|
||||
simdjson = callPackage ../development/libraries/simdjson { };
|
||||
|
||||
simg2img = callPackage ../tools/filesystems/simg2img { };
|
||||
|
||||
simplenes = callPackage ../misc/emulators/simplenes { };
|
||||
|
Loading…
Reference in New Issue
Block a user