From 390673060dda23aaddee016b5595e02f73b2b8af Mon Sep 17 00:00:00 2001 From: Renato Alves Date: Tue, 15 Jul 2025 10:05:49 +0200 Subject: [PATCH] firefox_decrypt: 1.1.0 -> 1.1.1 Version specified 1.1.1 but commit pointed to 1.1.0. Switching to fetching 'tag' to avoid version mismatch. --- pkgs/tools/security/firefox_decrypt/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/firefox_decrypt/default.nix b/pkgs/tools/security/firefox_decrypt/default.nix index 5bc8dbe86aa0..8b4a1464b743 100644 --- a/pkgs/tools/security/firefox_decrypt/default.nix +++ b/pkgs/tools/security/firefox_decrypt/default.nix @@ -18,8 +18,8 @@ buildPythonApplication rec { src = fetchFromGitHub { owner = "unode"; repo = pname; - rev = "0931c0484d7429f7d4de3a2f5b62b01b7924b49f"; - hash = "sha256-9HbH8DvHzmlem0XnDbcrIsMQRBuf82cHObqpLzQxNZM="; + tag = "${version}"; + hash = "sha256-HPjOUWusPXoSwwDvW32Uad4gFERvn79ee/WxeX6h3jY="; }; nativeBuildInputs = [ @@ -42,6 +42,9 @@ buildPythonApplication rec { description = "Tool to extract passwords from profiles of Mozilla Firefox and derivates"; mainProgram = "firefox_decrypt"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ schnusch ]; + maintainers = with maintainers; [ + schnusch + unode + ]; }; }