depot/third_party/nixpkgs/pkgs/tools/security/firefox_decrypt/default.nix
Default email 6d4aeb4377 Project import generated by Copybara.
GitOrigin-RevId: 0f213d0fee84280d8c3a97f7469b988d6fe5fcdf
2023-01-11 08:51:40 +01:00

48 lines
1 KiB
Nix

{ lib
, fetchFromGitHub
, stdenvNoCC
, nss
, wrapPython
, nix-update-script
}:
stdenvNoCC.mkDerivation rec {
pname = "firefox_decrypt";
version = "unstable-2022-12-21";
src = fetchFromGitHub {
owner = "unode";
repo = pname;
rev = "84bb368cc2f8d2055a8374ab1a40c403e0486859";
sha256 = "sha256-dyQTf6fgsQEmp++DeXl85nvyezm0Lq9onyfIdhQoGgI=";
};
nativeBuildInputs = [ wrapPython ];
buildInputs = [ nss ];
installPhase = ''
runHook preInstall
install -Dm 0755 firefox_decrypt.py "$out/bin/firefox_decrypt"
runHook postInstall
'';
makeWrapperArgs = [ "--prefix" "LD_LIBRARY_PATH" ":" (lib.makeLibraryPath [ nss ]) ];
postFixup = ''
wrapPythonPrograms
'';
passthru.updateScript = nix-update-script {
extraArgs = [ "--version=branch" ];
};
meta = with lib; {
homepage = "https://github.com/unode/firefox_decrypt";
description = "A tool to extract passwords from profiles of Mozilla Firefox and derivates";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ schnusch ];
};
}