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 @@
{ lib, buildDunePackage, fetchurl
, ipaddr, macaddr, cmdliner
}:
buildDunePackage rec {
pname = "tuntap";
version = "2.0.0";
useDune2 = true;
minimumOCamlVersion = "4.04.2";
src = fetchurl {
url = "https://github.com/mirage/ocaml-tuntap/releases/download/v${version}/tuntap-v${version}.tbz";
sha256 = "12wmls28h3jzikwyfw08d5f7ycsc9njwzbhd3qk2l8jnf5rakfsa";
};
propagatedBuildInputs = [ ipaddr macaddr cmdliner ];
# tests manipulate network devices and use network
# also depend on LWT 5
doCheck = false;
meta = {
description = "Bindings to the UNIX tuntap facility";
homepage = "https://github.com/mirage/ocaml-tuntap";
license = lib.licenses.isc;
mainProgram = "otunctl";
};
}