uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead

https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948
this can do it nicely.

Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
Anton Arapov 2021-04-03 12:58:10 +02:00 committed by Alan Daniels
commit 56de2bcd43
30691 changed files with 3076956 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ lib, python3, fetchFromGitHub }:
with python3.pkgs;
buildPythonApplication rec {
pname = "uefi-firmware-parser";
version = "1.8";
# Version 1.8 is not published on pypi
src = fetchFromGitHub {
owner = "theopolis";
repo = "uefi-firmware-parser";
rev = "v${version}";
sha256 = "1yn9vi91j1yxkn0icdnjhgl0qrqqkzyhccj39af4f19q1gdw995l";
};
meta = with lib; {
homepage = "https://github.com/theopolis/uefi-firmware-parser/";
description = "Parse BIOS/Intel ME/UEFI firmware related structures: Volumes, FileSystems, Files, etc";
# MIT + license headers in some files
license = with licenses; [
mit
zlib # uefi_firmware/me.py
bsd2 # uefi_firmware/compression/Tiano/**/*
publicDomain # uefi_firmware/compression/LZMA/SDK/C/*
];
platforms = [ "x86_64-linux" "aarch64-linux" ];
maintainers = [ maintainers.samueldr ];
};
}