From 748adbac7ca3452d0a1250c37ff4168d6ccf5ae0 Mon Sep 17 00:00:00 2001 From: sefidel Date: Tue, 14 Feb 2023 23:36:38 +0900 Subject: feat(nixos): init kompakt --- .../packages/asahi-fwextract/default.nix | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100755 nixos/modules/apple-silicon-support/packages/asahi-fwextract/default.nix (limited to 'nixos/modules/apple-silicon-support/packages/asahi-fwextract/default.nix') diff --git a/nixos/modules/apple-silicon-support/packages/asahi-fwextract/default.nix b/nixos/modules/apple-silicon-support/packages/asahi-fwextract/default.nix new file mode 100755 index 0000000..992d250 --- /dev/null +++ b/nixos/modules/apple-silicon-support/packages/asahi-fwextract/default.nix @@ -0,0 +1,36 @@ +{ lib +, python3 +, fetchFromGitHub +, gzip +, gnutar +, lzfse +}: + +python3.pkgs.buildPythonApplication rec { + pname = "asahi-fwextract"; + version = "0.5pre2"; + + # tracking version: https://github.com/AsahiLinux/PKGBUILDs/blob/main/asahi-fwextract/PKGBUILD + src = fetchFromGitHub { + owner = "AsahiLinux"; + repo = "asahi-installer"; + rev = "v${version}"; + hash = "sha256-p34eN2iE1s8rupdysjyf6GN8kHkVG9NDw31YKPDNXbk="; + }; + + patches = [ + ./add_entry_point.patch + ]; + + postPatch = '' + substituteInPlace asahi_firmware/img4.py \ + --replace 'liblzfse.so' '${lzfse}/lib/liblzfse.so' + substituteInPlace asahi_firmware/update.py \ + --replace '"tar"' '"${gnutar}/bin/tar"' \ + --replace '"xf"' '"-x", "-I", "${gzip}/bin/gzip", "-f"' + ''; + + nativeBuildInputs = [ python3.pkgs.setuptools ]; + + doCheck = false; +} -- cgit 1.4.1