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, stdenv, fetchFromGitHub, ocaml, findlib }:
assert lib.versionAtLeast (lib.getVersion ocaml) "4.03.0";
stdenv.mkDerivation rec {
pname = "ocaml${ocaml.version}-syslog";
version = "1.5";
src = fetchFromGitHub {
owner = "rixed";
repo = "ocaml-syslog";
rev = "v${version}";
sha256 = "1kqpc55ppzv9n555qgqpda49n7nvkqimzisyjx2a7338r7q4r5bw";
};
nativeBuildInputs = [ ocaml findlib ];
strictDeps = true;
buildFlags = [ "all" "opt" ];
createFindlibDestdir = true;
meta = with lib; {
homepage = "https://github.com/rixed/ocaml-syslog";
description = "Simple wrapper to access the system logger from OCaml";
license = licenses.lgpl21Plus;
inherit (ocaml.meta) platforms;
maintainers = [ maintainers.rixed ];
};
}