From 50f2577220b42cb6397bffb14c317c9a4be51a89 Mon Sep 17 00:00:00 2001 From: Lin Xianyi Date: Fri, 23 May 2025 09:09:01 +0800 Subject: [PATCH] scope-tui: 0.3.0-unstable-2024-05-06 -> 0.3.3 Changelog: https://github.com/alemidev/scope-tui/releases/tag/v0.3.3 Diff: https://github.com/alemidev/scope-tui/compare/c2fe70a69cfc15c4de6ea3f2a51580ec57a5c9e1...v0.3.3 --- pkgs/by-name/sc/scope-tui/package.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/by-name/sc/scope-tui/package.nix b/pkgs/by-name/sc/scope-tui/package.nix index be0e71f1a1cc..4a83c20e15e9 100644 --- a/pkgs/by-name/sc/scope-tui/package.nix +++ b/pkgs/by-name/sc/scope-tui/package.nix @@ -7,19 +7,19 @@ alsa-lib, withPulseaudio ? true, }: -rustPlatform.buildRustPackage { +rustPlatform.buildRustPackage (finalAttrs: { pname = "scope-tui"; - version = "0.3.0-unstable-2024-05-06"; + version = "0.3.3"; src = fetchFromGitHub { owner = "alemidev"; repo = "scope-tui"; - rev = "c2fe70a69cfc15c4de6ea3f2a51580ec57a5c9e1"; - hash = "sha256-6UPIZ2UB5wb0IkigaOXdQ/0ux9vHUGC4w5WnrjEd1bg="; + rev = "v${finalAttrs.version}"; + hash = "sha256-bVe+Yyv+DcbEC15H968OhQhcFkAm7T5J6aQlKod5ocM="; }; useFetchCargoVendor = true; - cargoHash = "sha256-RcpKpjPNJhTAsX4iBNOwBxutl2qyBxsis2m5xtXBhh4="; + cargoHash = "sha256-o5pplwNtIe2z88ZwtCHree32kv16U/ryv8PmPIqxtPQ="; nativeBuildInputs = [ pkg-config ]; @@ -40,4 +40,4 @@ rustPlatform.buildRustPackage { mainProgram = "scope-tui"; platforms = lib.platforms.linux; }; -} +})