From 307a02f0495a2ffa233b309e0b725d2e710b91c2 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Mon, 7 Apr 2025 13:26:45 +0200 Subject: [PATCH] tuisky: 0.2.0 -> 0.2.1 Diff: https://github.com/sugyan/tuisky/compare/refs/tags/v0.2.0...refs/tags/v0.2.1 Changelog: https://github.com/sugyan/tuisky/blob/v0.2.1/CHANGELOG.md --- pkgs/by-name/tu/tuisky/package.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/by-name/tu/tuisky/package.nix b/pkgs/by-name/tu/tuisky/package.nix index 61b9651dada6..67103615d4db 100644 --- a/pkgs/by-name/tu/tuisky/package.nix +++ b/pkgs/by-name/tu/tuisky/package.nix @@ -8,19 +8,19 @@ nix-update-script, }: -rustPlatform.buildRustPackage rec { +rustPlatform.buildRustPackage (finalAttrs: { pname = "tuisky"; - version = "0.2.0"; + version = "0.2.1"; src = fetchFromGitHub { owner = "sugyan"; repo = "tuisky"; - tag = "v${version}"; - hash = "sha256-s0eKWP4cga82Fj7KGIG6yLk67yOqGoAqfhvJINzytTw="; + tag = "v${finalAttrs.version}"; + hash = "sha256-7SkY2n5nfqGDxbaSYmWwwmksA8eNY9SjRLLfCUP3qtc="; }; useFetchCargoVendor = true; - cargoHash = "sha256-F/gEBEpcgNT0Q55zUTf8254yYIZI6RmiW9heCuljAEY="; + cargoHash = "sha256-rkIc/dRvuuOUq2v3bHLAL//DmiEBbBAhTxR0MHxAL/U="; nativeBuildInputs = [ pkg-config @@ -43,9 +43,9 @@ rustPlatform.buildRustPackage rec { meta = { description = "TUI client for bluesky"; homepage = "https://github.com/sugyan/tuisky"; - changelog = "https://github.com/sugyan/tuisky/blob/v${version}/CHANGELOG.md"; + changelog = "https://github.com/sugyan/tuisky/blob/v${finalAttrs.version}/CHANGELOG.md"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ GaetanLepage ]; mainProgram = "tuisky"; }; -} +})