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 @@
{ build-idris-package
, fetchFromGitHub
, pruviloj
, lib
}:
build-idris-package {
pname = "software_foundations";
version = "2017-11-04";
idrisDeps = [ pruviloj ];
src = fetchFromGitHub {
owner = "idris-hackers";
repo = "software-foundations";
rev = "eaa63d1a572c78e7ce68d27fd49ffdc01457e720";
sha256 = "1rkjm0x79n1r3ah041a5bik7sc3rvqs42a2c3g139hlg5xd028xf";
};
meta = {
description = "Code for Software Foundations in Idris";
homepage = "https://github.com/idris-hackers/software-foundations";
maintainers = [ lib.maintainers.brainrape ];
};
}