3 , buildPythonApplication
12 buildPythonApplication rec {
13 pname = "firefox_decrypt";
17 src = fetchFromGitHub {
20 rev = "0931c0484d7429f7d4de3a2f5b62b01b7924b49f";
21 hash = "sha256-9HbH8DvHzmlem0XnDbcrIsMQRBuf82cHObqpLzQxNZM=";
32 (if stdenv.hostPlatform.isDarwin then "DYLD_LIBRARY_PATH" else "LD_LIBRARY_PATH")
34 (lib.makeLibraryPath [ nss ])
37 passthru.updateScript = nix-update-script { };
40 homepage = "https://github.com/unode/firefox_decrypt";
41 description = "Tool to extract passwords from profiles of Mozilla Firefox and derivates";
42 mainProgram = "firefox_decrypt";
43 license = licenses.gpl3Plus;
44 maintainers = with maintainers; [ schnusch ];