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,25 @@
{ build-idris-package
, fetchFromGitHub
, lib
}:
build-idris-package {
pname = "tp";
version = "2017-08-15";
src = fetchFromGitHub {
owner = "superfunc";
repo = "tp";
rev = "ef59ccf355ae462bd4f55d596e6d03a9376b67b2";
sha256 = "1a924qvm1dqfg419x8n35w0sz74vyyqsynz5g393f82jsrrwci8z";
};
# tests fail with permission error
doCheck = false;
meta = {
description = "Strongly Typed Paths for Idris";
homepage = "https://github.com/superfunc/tp";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.brainrape ];
};
}