From b0a858864a5df94c276c10fd249133f8f461cab5 Mon Sep 17 00:00:00 2001 From: Anton Mosich Date: Mon, 28 Apr 2025 15:56:34 +0200 Subject: [PATCH] tabiew: fix hash It seems tabiew replaced their tag 0.9.0 with the following commit, which invalidates the current hash. Originally the tag pointed at c5b506231f562be62f6cf57c0090045b93a1aa1d, now it points at ce3037dbc0a7b72117f9482a09aee0555f400d24. --- pkgs/by-name/ta/tabiew/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ta/tabiew/package.nix b/pkgs/by-name/ta/tabiew/package.nix index 24f402dcbf6c..2ff18651d061 100644 --- a/pkgs/by-name/ta/tabiew/package.nix +++ b/pkgs/by-name/ta/tabiew/package.nix @@ -11,8 +11,8 @@ rustPlatform.buildRustPackage rec { src = fetchFromGitHub { owner = "shshemi"; repo = "tabiew"; - rev = "v${version}"; - hash = "sha256-FDHK1tEioV7KxlYhPfF+MTub45f0G+ZPvbi0CMeMBOs="; + tag = "v${version}"; + hash = "sha256-eGSlRFcSkQPXmnHQM81UYBokvH6dIn9EhrFbSfsJ22I="; }; useFetchCargoVendor = true;