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
, effects
, lib
}:
build-idris-package {
pname = "farrp";
version = "2018-02-13";
idrisDeps = [ effects ];
src = fetchFromGitHub {
owner = "lambda-11235";
repo = "FarRP";
rev = "d592957232968743f8862e49d5a8d52e13340444";
sha256 = "1zrf750d7x1cz7kkgcx4ipa87hkg10adwii4qqvz9vpjap7vh7h0";
};
meta = {
description = "Arrowized FRP library for Idris with static safety guarantees";
homepage = "https://github.com/lambda-11235/FarRP";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.brainrape ];
};
}