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
, idrisscript
, html
, xhr
, lib
}:
build-idris-package {
pname = "dom";
version = "2017-04-22";
idrisDeps = [ idrisscript html xhr ];
src = fetchFromGitHub {
owner = "pierrebeaucamp";
repo = "idris-dom";
rev = "6e5a2d143f62ef422358924ee7db6e8147cdc531";
sha256 = "16z9mykw2d9rjikn07kd6igb53jgaqi8zby4nc4n0gmplmhwdx4x";
};
meta = {
description = "Idris library to interact with the DOM";
homepage = "https://github.com/pierrebeaucamp/idris-dom";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.brainrape ];
};
}