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,46 @@
{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, extra-cmake-modules
, kdecoration
, kcoreaddons
, kguiaddons
, kconfigwidgets
, kwindowsystem
, kiconthemes
, qtx11extras
}:
mkDerivation rec{
pname = "lightly";
version = "0.4.1";
src = fetchFromGitHub {
owner = "Luwx";
repo = pname;
rev = "v${version}";
sha256 = "k1fEZbhzluNlAmj5s/O9X20aCVQxlWQm/Iw/euX7cmI=";
};
extraCmakeFlags=["-DBUILD_TESTING=OFF"];
nativeBuildInputs = [ cmake extra-cmake-modules ];
buildInputs = [
kcoreaddons
kguiaddons
kconfigwidgets
kwindowsystem
kiconthemes
qtx11extras
kdecoration
];
meta = with lib; {
description = "A modern style for qt applications";
license = licenses.gpl2Only;
maintainers = with maintainers; [ pasqui23 ];
homepage = "https://github.com/Luwx/Lightly/";
inherit (kwindowsystem.meta) platforms;
};
}