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 @@
{ lib, buildDunePackage, fetchFromGitHub, xenstore, lwt }:
buildDunePackage rec {
pname = "xenstore_transport";
version = "1.3.0";
minimumOCamlVersion = "4.04";
useDune2 = true;
src = fetchFromGitHub {
owner = "xapi-project";
repo = "ocaml-xenstore-clients";
rev = "v${version}";
sha256 = "1kxxd9i4qiq98r7sgvl59iq2ni7y6drnv48qj580q5cyiyyc85q3";
};
propagatedBuildInputs = [ xenstore lwt ];
# requires a mounted xenfs and xen server
doCheck = false;
meta = with lib; {
description = "Low-level libraries for connecting to a xenstore service on a xen host";
license = licenses.lgpl21Only;
homepage = "https://github.com/xapi-project/ocaml-xenstore-clients";
};
}