Skip to content

Commit

Permalink
rsonpath: init at 0.9.1 -> 0.9.1-unstable-2024-11-15
Browse files Browse the repository at this point in the history
  • Loading branch information
Bot-wxt1221 committed Dec 21, 2024
1 parent dba9da8 commit d46ac81
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions pkgs/by-name/rs/rsonpath/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,35 @@
lib,
rustPlatform,
fetchFromGitHub,
unstableGitUpdater,
}:

rustPlatform.buildRustPackage rec {
pname = "rsonpath";
version = "0.9.1";
version = "0.9.1-unstable-2024-11-15";

src = fetchFromGitHub {
owner = "v0ldek";
owner = "rsonquery";
repo = "rsonpath";
rev = "v${version}";
hash = "sha256-3q0q9Bj/DPuDmHu2G9jrABFXU8xgbUUS7iTBguVWR5s=";
rev = "979e6374a68747dfba7b87b61bbe77951f749659";
hash = "sha256-YQCbkdv7PRf5hVXAGUg6DrtaCLIyS9nUGXsl8XHpKZU=";
};

cargoHash = "sha256-bh72u1AvM6bGNQCjyu6GdAiK0jw5lE0SIdYzaZEjYg8=";
passthru.updateScript = unstableGitUpdater {
tagPrefix = "v";
};

cargoHash = "sha256-nv2dQ7JV+fJIW+AkKLJ1yauKog0bS7F62cXsqp1CoRo=";

cargoBuildFlags = [ "-p=rsonpath" ];
cargoTestFlags = cargoBuildFlags;

meta = with lib; {
meta = {
description = "Experimental JSONPath engine for querying massive streamed datasets";
homepage = "https://github.com/v0ldek/rsonpath";
changelog = "https://github.com/v0ldek/rsonpath/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ figsoda ];
mainProgram = "rq";
};
}

0 comments on commit d46ac81

Please sign in to comment.