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,27 @@
{ build-idris-package
, fetchFromGitHub
, contrib
, lib
}:
build-idris-package {
pname = "tparsec";
version = "2020-02-11";
ipkgName = "TParsec";
idrisDeps = [ contrib ];
src = fetchFromGitHub {
owner = "gallais";
repo = "idris-tparsec";
rev = "943c64dfcb4e1582696f68312fad88145dc3a8e4";
sha256 = "0pyhkafhx2pwim91ada6qrgacvahl9bpv5m486y8fph4qzf4z6mx";
};
meta = {
description = "TParsec - Total Parser Combinators in Idris";
homepage = "https://github.com/gallais/idris-tparsec";
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.brainrape ];
};
}