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, fetchurl, pkg-config
, systemd ? null
}:
stdenv.mkDerivation rec {
pname = "liblogging";
version = "1.0.6";
src = fetchurl {
url = "http://download.rsyslog.com/liblogging/liblogging-${version}.tar.gz";
sha256 = "14xz00mq07qmcgprlj5b2r21ljgpa4sbwmpr6jm2wrf8wms6331k";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ systemd ];
configureFlags = [
"--enable-rfc3195"
"--enable-stdlog"
(if systemd != null then "--enable-journal" else "--disable-journal")
"--enable-man-pages"
];
meta = with lib; {
homepage = "http://www.liblogging.org/";
description = "Lightweight signal-safe logging library";
license = licenses.bsd2;
platforms = platforms.all;
};
}