mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
46 lines
1,004 B
Nix
46 lines
1,004 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildPythonApplication
|
|
, setuptools
|
|
, setuptools-scm
|
|
, wheel
|
|
, nss
|
|
, nix-update-script
|
|
, stdenv
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "firefox_decrypt";
|
|
version = "1.1.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "unode";
|
|
repo = pname;
|
|
rev = "0931c0484d7429f7d4de3a2f5b62b01b7924b49f";
|
|
hash = "sha256-9HbH8DvHzmlem0XnDbcrIsMQRBuf82cHObqpLzQxNZM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
setuptools-scm
|
|
wheel
|
|
];
|
|
|
|
makeWrapperArgs = [
|
|
"--prefix"
|
|
(if stdenv.isDarwin then "DYLD_LIBRARY_PATH" else "LD_LIBRARY_PATH")
|
|
":"
|
|
(lib.makeLibraryPath [ nss ])
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/unode/firefox_decrypt";
|
|
description = "Tool to extract passwords from profiles of Mozilla Firefox and derivates";
|
|
mainProgram = "firefox_decrypt";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ schnusch ];
|
|
};
|
|
}
|