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,30 @@
{ build-idris-package
, fetchFromGitHub
, contrib
, effects
, libmicrohttpd
, lib
}:
build-idris-package {
pname = "mhd";
version = "2016-04-22";
ipkgName = "MHD";
idrisDeps = [ contrib effects ];
extraBuildInputs = [ libmicrohttpd ];
src = fetchFromGitHub {
owner = "colin-adams";
repo = "idris-libmicrohttpd";
rev = "a8808bc06fa292d4b3389f32cb00716e43122a46";
sha256 = "0wvp1qi3bn4hk52vsid6acfwvwbs58sggylbpjvkxzycsbhz4nx4";
};
meta = {
description = "A binding of the GNU libmicrohttpd library to the Idris C backend";
homepage = "https://github.com/colin-adams/idris-libmicrohttpd";
license = lib.licenses.lgpl21;
maintainers = [ lib.maintainers.brainrape ];
};
}