Merge pull request #223333 from figsoda/rsonpath
This commit is contained in:
commit
80bbc6ea21
2 changed files with 39 additions and 0 deletions
37
pkgs/development/tools/misc/rsonpath/default.nix
Normal file
37
pkgs/development/tools/misc/rsonpath/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
{ lib
|
||||||
|
, rustPlatform
|
||||||
|
, fetchFromGitHub
|
||||||
|
, withSimd ? true
|
||||||
|
, stdenv
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "rsonpath";
|
||||||
|
version = "0.3.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "v0ldek";
|
||||||
|
repo = "rsonpath";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-ip8+Wy9rmTzFccmjYWb3Nk+gkq3g4e1ty/5+ldIOO10=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoHash = "sha256-5V0H2FeHI1SByzLsviOR+qHwYhZGiNmMawCTYjk2P24=";
|
||||||
|
|
||||||
|
buildNoDefaultFeatures = true;
|
||||||
|
buildFeatures = [
|
||||||
|
"default-optimizations"
|
||||||
|
] ++ lib.optionals withSimd [
|
||||||
|
"simd"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Blazing fast Rust JSONPath query engine";
|
||||||
|
homepage = "https://github.com/v0ldek/rsonpath";
|
||||||
|
changelog = "https://github.com/v0ldek/rsonpath/blob/${src.rev}/CHANGELOG.md";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ figsoda ];
|
||||||
|
# build fails on platforms without simd support, even when withSimd = false
|
||||||
|
broken = !stdenv.isx86_64;
|
||||||
|
};
|
||||||
|
}
|
|
@ -18733,6 +18733,8 @@ with pkgs;
|
||||||
|
|
||||||
rsass = callPackage ../development/tools/misc/rsass { };
|
rsass = callPackage ../development/tools/misc/rsass { };
|
||||||
|
|
||||||
|
rsonpath = callPackage ../development/tools/misc/rsonpath { };
|
||||||
|
|
||||||
rufo = callPackage ../development/tools/rufo { };
|
rufo = callPackage ../development/tools/rufo { };
|
||||||
|
|
||||||
samurai = callPackage ../development/tools/build-managers/samurai { };
|
samurai = callPackage ../development/tools/build-managers/samurai { };
|
||||||
|
|
Loading…
Reference in a new issue