tuisky: 0.2.0 -> 0.2.1 (#396802)

authored by

Gaétan Lepage and committed by
GitHub
676f1c9b 859328f2

+7 -7
+7 -7
pkgs/by-name/tu/tuisky/package.nix
··· 8 8 nix-update-script, 9 9 }: 10 10 11 - rustPlatform.buildRustPackage rec { 11 + rustPlatform.buildRustPackage (finalAttrs: { 12 12 pname = "tuisky"; 13 - version = "0.2.0"; 13 + version = "0.2.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "sugyan"; 17 17 repo = "tuisky"; 18 - tag = "v${version}"; 19 - hash = "sha256-s0eKWP4cga82Fj7KGIG6yLk67yOqGoAqfhvJINzytTw="; 18 + tag = "v${finalAttrs.version}"; 19 + hash = "sha256-7SkY2n5nfqGDxbaSYmWwwmksA8eNY9SjRLLfCUP3qtc="; 20 20 }; 21 21 22 22 useFetchCargoVendor = true; 23 - cargoHash = "sha256-F/gEBEpcgNT0Q55zUTf8254yYIZI6RmiW9heCuljAEY="; 23 + cargoHash = "sha256-rkIc/dRvuuOUq2v3bHLAL//DmiEBbBAhTxR0MHxAL/U="; 24 24 25 25 nativeBuildInputs = [ 26 26 pkg-config ··· 43 43 meta = { 44 44 description = "TUI client for bluesky"; 45 45 homepage = "https://github.com/sugyan/tuisky"; 46 - changelog = "https://github.com/sugyan/tuisky/blob/v${version}/CHANGELOG.md"; 46 + changelog = "https://github.com/sugyan/tuisky/blob/v${finalAttrs.version}/CHANGELOG.md"; 47 47 license = lib.licenses.mit; 48 48 maintainers = with lib.maintainers; [ GaetanLepage ]; 49 49 mainProgram = "tuisky"; 50 50 }; 51 - } 51 + })