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,26 @@
{ build-idris-package
, fetchFromGitHub
, contrib
, lib
}:
build-idris-package {
pname = "snippets";
version = "2018-03-17";
ipkgName = "idris-snippets";
idrisDeps = [ contrib ];
src = fetchFromGitHub {
owner = "palladin";
repo = "idris-snippets";
rev = "c26d6f5ffc1cc0456279f5ac74fec5af8c09025e";
sha256 = "1vwyzck6yan3wifsyj02ji9l6x9rs2r02aybm90gl676s2x4mhjn";
};
meta = {
description = "Collection of Idris snippets";
homepage = "https://github.com/palladin/idris-snippets";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.brainrape ];
};
}