Unverified Commit 80bbc6ea authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #223333 from figsoda/rsonpath

parents 16f67c4a 2799851a
Loading
Loading
Loading
Loading
+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;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };