33 lines
796 B
Nix
33 lines
796 B
Nix
![]() |
{ lib
|
||
|
, python3
|
||
|
, fetchFromGitHub
|
||
|
, gzip
|
||
|
, gnutar
|
||
|
, lzfse
|
||
|
}:
|
||
|
|
||
|
python3.pkgs.buildPythonApplication rec {
|
||
|
pname = "asahi-fwextract";
|
||
|
version = "0.7.5";
|
||
|
|
||
|
# tracking version: https://packages.fedoraproject.org/pkgs/asahi-installer/python3-asahi_firmware/
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "AsahiLinux";
|
||
|
repo = "asahi-installer";
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-lGZFvB1zK+5MYhy2DgAHNUUG4EJPDGlIJ8MfdnDm4Ak=";
|
||
|
};
|
||
|
|
||
|
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;
|
||
|
}
|