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, fetchgit }:
stdenv.mkDerivation rec {
pname = "edid-decode";
version = "unstable-2022-04-06";
src = fetchgit {
url = "git://linuxtv.org/edid-decode.git";
rev = "6def7bc83dfb0338632e06a8b14c93faa6af8879";
sha256 = "0v6d6jy309pb02l377l0fpmgfsvcpiqc5bvyrli34v413mhq6p15";
};
installPhase = ''
mkdir -p $out/bin
cp edid-decode $out/bin
'';
meta = with lib; {
description = "EDID decoder and conformance tester";
homepage = "https://git.linuxtv.org/edid-decode.git";
license = licenses.mit;
maintainers = with maintainers; [ Madouura ];
platforms = lib.platforms.all;
};
}