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,36 @@
{ lib, buildDunePackage, fetchurl
, ocaml
, astring, ptime, rresult, qcheck
}:
buildDunePackage rec {
pname = "syslog-message";
version = "1.1.0";
minimumOCamlVersion = "4.03";
useDune2 = true;
src = fetchurl {
url = "https://github.com/verbosemode/${pname}/releases/download/${version}/${pname}-${version}.tbz";
sha256 = "0vy4dkl2q2fa6rzyfsvjyc9r1b9ymfqd6j35z2kp5vdc4r87053g";
};
propagatedBuildInputs = [
astring
ptime
rresult
];
doCheck = lib.versionAtLeast ocaml.version "4.08";
checkInputs = [
qcheck
];
meta = with lib; {
description = "Syslog message parser";
homepage = "https://github.com/verbosemode/syslog-message";
license = licenses.bsd2;
maintainers = [ maintainers.sternenseemann ];
};
}