lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

firefox_decrypt: refactor package definitions for by-name

firefox_decrypt: fix version tag

+8 -11
+8 -11
pkgs/by-name/fi/firefox_decrypt/package.nix
··· 1 1 { 2 2 lib, 3 3 fetchFromGitHub, 4 - buildPythonApplication, 5 - setuptools, 6 - setuptools-scm, 7 - wheel, 8 4 nss, 9 5 nix-update-script, 10 6 stdenv, 7 + python3Packages, 11 8 }: 12 9 13 - buildPythonApplication rec { 10 + python3Packages.buildPythonApplication rec { 14 11 pname = "firefox_decrypt"; 15 12 version = "1.1.1"; 16 13 format = "pyproject"; 17 14 18 15 src = fetchFromGitHub { 19 16 owner = "unode"; 20 - repo = pname; 21 - tag = "${version}"; 17 + repo = "firefox_decrypt"; 18 + tag = version; 22 19 hash = "sha256-HPjOUWusPXoSwwDvW32Uad4gFERvn79ee/WxeX6h3jY="; 23 20 }; 24 21 25 - nativeBuildInputs = [ 22 + build-system = with python3Packages; [ 26 23 setuptools 27 24 setuptools-scm 28 25 wheel ··· 37 34 38 35 passthru.updateScript = nix-update-script { }; 39 36 40 - meta = with lib; { 37 + meta = { 41 38 homepage = "https://github.com/unode/firefox_decrypt"; 42 39 description = "Tool to extract passwords from profiles of Mozilla Firefox and derivates"; 43 40 mainProgram = "firefox_decrypt"; 44 - license = licenses.gpl3Plus; 45 - maintainers = with maintainers; [ 41 + license = lib.licenses.gpl3Plus; 42 + maintainers = with lib.maintainers; [ 46 43 schnusch 47 44 unode 48 45 ];