Loading pkgs/development/tools/misc/rsonpath/default.nix 0 → 100644 +37 −0 Original line number Diff line number Diff line { 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; }; } pkgs/top-level/all-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading
pkgs/development/tools/misc/rsonpath/default.nix 0 → 100644 +37 −0 Original line number Diff line number Diff line { 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; }; }
pkgs/top-level/all-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { };