From 6cb07752da5843e668d05d42666768e00dcea2e8 Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Mon, 31 Jul 2023 23:07:17 -0700 Subject: [PATCH] firefox_decrypt: add missing build dependencies --- pkgs/tools/security/firefox_decrypt/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/firefox_decrypt/default.nix b/pkgs/tools/security/firefox_decrypt/default.nix index f0f2e1cf76d4..57f1215ed817 100644 --- a/pkgs/tools/security/firefox_decrypt/default.nix +++ b/pkgs/tools/security/firefox_decrypt/default.nix @@ -2,6 +2,8 @@ , fetchFromGitHub , buildPythonApplication , setuptools +, setuptools-scm +, wheel , nss , nix-update-script }: @@ -9,18 +11,19 @@ buildPythonApplication rec { pname = "firefox_decrypt"; version = "1.1.0"; - format = "pyproject"; src = fetchFromGitHub { owner = "unode"; repo = pname; rev = "0931c0484d7429f7d4de3a2f5b62b01b7924b49f"; - sha256 = "sha256-9HbH8DvHzmlem0XnDbcrIsMQRBuf82cHObqpLzQxNZM="; + hash = "sha256-9HbH8DvHzmlem0XnDbcrIsMQRBuf82cHObqpLzQxNZM="; }; nativeBuildInputs = [ setuptools + setuptools-scm + wheel ]; makeWrapperArgs = [ "--prefix" "LD_LIBRARY_PATH" ":" (lib.makeLibraryPath [ nss ]) ];