Merge pull request #223333 from figsoda/rsonpath

This commit is contained in:
figsoda 2023-03-27 16:10:07 -04:00 committed by GitHub
commit 80bbc6ea21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 0 deletions

View 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;
};
}

View file

@ -18733,6 +18733,8 @@ with pkgs;
rsass = callPackage ../development/tools/misc/rsass { };
rsonpath = callPackage ../development/tools/misc/rsonpath { };
rufo = callPackage ../development/tools/rufo { };
samurai = callPackage ../development/tools/build-managers/samurai { };