From e6140c26a8da7c39365366b829ce25843c5e350b Mon Sep 17 00:00:00 2001 From: "Adam C. Stephens" Date: Fri, 20 Jun 2025 08:34:15 -0400 Subject: [PATCH] ristate: unstable-2021-09-10 -> 0-unstable-2023-07-23 --- pkgs/by-name/ri/ristate/package.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/ri/ristate/package.nix b/pkgs/by-name/ri/ristate/package.nix index 7c20c4a34274..dd13629ce3a3 100644 --- a/pkgs/by-name/ri/ristate/package.nix +++ b/pkgs/by-name/ri/ristate/package.nix @@ -2,21 +2,24 @@ lib, rustPlatform, fetchFromGitLab, + nix-update-script, }: rustPlatform.buildRustPackage { pname = "ristate"; - version = "unstable-2021-09-10"; + version = "0-unstable-2023-07-23"; src = fetchFromGitLab { owner = "snakedye"; repo = "ristate"; - rev = "34dfd0a0bab5b36df118d8da3956fd938c625b15"; - hash = "sha256-CH9DZ/7Bhbe6qKg1Nbj1rA9SzIsqVlBJg51XxAh0XnY="; + rev = "92e989f26cadac69af1208163733e73b4cf447da"; + hash = "sha256-6slH7R6kbSXQBd7q38oBEbngaCbFv0Tyq34VB1PAfhM="; }; useFetchCargoVendor = true; - cargoHash = "sha256-kzy0U2ZdmEr/F1edQDM3S30ETXaVUXrSoUA+8v486O0="; + cargoHash = "sha256-6uvIc69x/yHkAC3GJUuYGcCbpVyX/mb/pXLf+BQC+48="; + + passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; meta = with lib; { description = "River-status client written in Rust";