8 stdenvNoCC.mkDerivation rec {
9 pname = "firefox_decrypt";
10 version = "unstable-2021-12-29";
12 src = fetchFromGitHub {
15 rev = "a3daadc09603a6cf8c4b7e49a59776340bc885e7";
16 sha256 = "0g219zqbdnhh9j09d9a0b81vr6j44zzk13ckl5fzkr10gqndiscc";
19 nativeBuildInputs = [ wrapPython ];
21 buildInputs = [ nss ];
26 install -Dm 0755 firefox_decrypt.py "$out/bin/firefox_decrypt"
31 makeWrapperArgs = [ "--prefix" "LD_LIBRARY_PATH" ":" (lib.makeLibraryPath [ nss ]) ];
37 passthru.updateScript = ./update.sh;
40 homepage = "https://github.com/unode/firefox_decrypt";
41 description = "A tool to extract passwords from profiles of Mozilla Firefox and derivates";
42 license = licenses.gpl3Plus;
43 maintainers = with maintainers; [ schnusch ];