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,35 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
, tokyocabinet, ncurses
, cairo ? null, pango ? null
, enableCairo ? stdenv.isLinux
}:
assert enableCairo -> cairo != null && pango != null;
stdenv.mkDerivation rec {
pname = "duc";
version = "1.4.4";
src = fetchFromGitHub {
owner = "zevv";
repo = "duc";
rev = version;
sha256 = "1i7ry25xzy027g6ysv6qlf09ax04q4vy0kikl8h0aq5jbxsl9q52";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ tokyocabinet ncurses ] ++
lib.optionals enableCairo [ cairo pango ];
configureFlags =
lib.optionals (!enableCairo) [ "--disable-x11" "--disable-cairo" ];
meta = with lib; {
homepage = "http://duc.zevv.nl/";
description = "Collection of tools for inspecting and visualizing disk usage";
license = licenses.gpl2;
platforms = platforms.all;
maintainers = [ ];
};
}