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,26 @@
{ lib, stdenv, fetchFromGitHub, lv2, pkg-config }:
stdenv.mkDerivation rec {
pname = "mod-arpeggiator-lv2";
version = "unstable-2021-11-09";
src = fetchFromGitHub {
owner = "moddevices";
repo = pname;
rev = "82f3d9f159ce216454656a8782362c3d5ed48bed";
sha256 = "sha256-1KiWMTVTTf1/iR4AzJ1Oe0mOrWN5edsZN0tQMidgnRA=";
};
buildInputs = [ lv2 pkg-config ];
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "a LV2 arpeggiator";
homepage = "https://github.com/moddevices/mod-arpeggiator-lv2";
license = licenses.gpl2Plus;
maintainers = [ maintainers.magnetophon ];
platforms = platforms.linux;
};
}