From e331a4f8fc56ecb52c1ab983094a950e0e97c73a Mon Sep 17 00:00:00 2001 From: figsoda Date: Sat, 17 Jun 2023 13:01:44 -0400 Subject: [PATCH] rsonpath: 0.4.0 -> 0.5.0 Diff: https://github.com/v0ldek/rsonpath/compare/v0.4.0...v0.5.0 Changelog: https://github.com/v0ldek/rsonpath/blob/v0.5.0/CHANGELOG.md --- pkgs/development/tools/misc/rsonpath/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/misc/rsonpath/default.nix b/pkgs/development/tools/misc/rsonpath/default.nix index 3601356f172a..4eca879eebd3 100644 --- a/pkgs/development/tools/misc/rsonpath/default.nix +++ b/pkgs/development/tools/misc/rsonpath/default.nix @@ -7,16 +7,16 @@ rustPlatform.buildRustPackage rec { pname = "rsonpath"; - version = "0.4.0"; + version = "0.5.0"; src = fetchFromGitHub { owner = "v0ldek"; repo = "rsonpath"; rev = "v${version}"; - hash = "sha256-F52IUTfQ2h5z0+WeLNCCmX8vre58ayncW4/lxIwo/T8="; + hash = "sha256-J/KdnPvGZb1Y1IgcjtU2ZxzurjoUjo3oKVnxGeNwHHc="; }; - cargoHash = "sha256-WY6wXnPh0rgjSkNMWOeOCl//kHlDk0z6Gvnjax33nvE="; + cargoHash = "sha256-npnTXnRz2ktTc5c7p8vINdFwGJcbsRQ21D6lmtddl7Y="; buildNoDefaultFeatures = true; buildFeatures = [ @@ -31,5 +31,6 @@ rustPlatform.buildRustPackage rec { changelog = "https://github.com/v0ldek/rsonpath/blob/${src.rev}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ figsoda ]; + mainProgram = "rq"; }; }