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,24 @@
{ lib, buildPythonPackage, fetchFromGitHub }:
buildPythonPackage {
pname = "pyext";
version = "0.8";
# Latest release not on Pypi or tagged since 2015
src = fetchFromGitHub {
owner = "kirbyfan64";
repo = "PyExt";
rev = "1e018b12752ceb279f11aee123ed773d63dcec7e";
sha256 = "16km897ng6lgjs39hv83xragdxh0mhyw6ds0qkm21cyci1k5m1vm";
};
# Has no test suite
doCheck = false;
meta = with lib; {
description = "Simple Python extensions";
homepage = "https://github.com/kirbyfan64/PyExt";
license = licenses.mit;
maintainers = with maintainers; [ edwtjo ];
};
}