uefi-firmware-parser: init at 1.12 (#349032)

authored by

Markus Kowalewski and committed by
GitHub
3a3791da 26cf0447

+39 -1
+39
pkgs/by-name/ue/uefi-firmware-parser/package.nix
··· 1 + { 2 + fetchFromGitHub, 3 + lib, 4 + nix-update-script, 5 + python3, 6 + }: 7 + 8 + python3.pkgs.buildPythonApplication rec { 9 + pname = "uefi-firmware-parser"; 10 + version = "1.12"; 11 + pyproject = true; 12 + 13 + src = fetchFromGitHub { 14 + owner = "theopolis"; 15 + repo = "uefi-firmware-parser"; 16 + rev = "v${version}"; 17 + hash = "sha256-Yiw9idmvSpx4CcVrXHznR8vK/xl7DTL+L7k4Nvql2B8="; 18 + }; 19 + 20 + build-system = [ 21 + python3.pkgs.setuptools 22 + python3.pkgs.wheel 23 + ]; 24 + 25 + dependencies = [ python3.pkgs.future ]; 26 + 27 + pythonImportsCheck = [ "uefi_firmware" ]; 28 + 29 + passthru.updateScript = nix-update-script { }; 30 + 31 + meta = { 32 + description = "Tool for parsing, extracting, and recreating UEFI firmware volumes"; 33 + homepage = "https://github.com/theopolis/uefi-firmware-parser"; 34 + license = lib.licenses.mit; 35 + platforms = lib.platforms.unix; 36 + maintainers = with lib.maintainers; [ KSJ2000 ]; 37 + mainProgram = "uefi-firmware-parser"; 38 + }; 39 + }
-1
pkgs/top-level/aliases.nix
··· 1238 1238 ubuntu_font_family = ubuntu-classic; # Added 2024-02-19 1239 1239 uclibc = uclibc-ng; # Added 2022-06-16 1240 1240 uclibcCross = uclibc-ng; # Added 2022-06-16 1241 - uefi-firmware-parser = throw "The uefi-firmware-parser package was dropped since it was unmaintained."; # Added 2024-06-21 1242 1241 unicorn-emu = throw "'unicorn-emu' has been renamed to/replaced by 'unicorn'"; # Converted to throw 2024-10-17 1243 1242 uniffi-bindgen = throw "uniffi-bindgen has been removed since upstream no longer provides a standalone package for the CLI"; 1244 1243 unifi-poller = unpoller; # Added 2022-11-24