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, fetchurl, libusb1 }:
stdenv.mkDerivation rec {
pname = "rkflashtool";
version = "5.1";
src = fetchurl {
url = "mirror://sourceforge/rkflashtool/rkflashtool-${version}-src.tar.bz2";
sha256 = "0dbp1crw7pjav9gffrnskhkf0gxlj4xgp65clqhvfmv32460xb9c";
};
versionh = fetchurl {
url = "mirror://sourceforge/rkflashtool/version.h";
sha256 = "1mkcy3yyfaddhzg524hjnhvmwdmdfzbavib8d9p5y38pcqy8xgdp";
};
buildInputs = [ libusb1 ];
preBuild = ''
cp $versionh version.h
'';
installPhase = ''
mkdir -p $out/bin
cp rkunpack rkcrc rkflashtool rkparameters rkparametersblock rkunsign rkmisc $out/bin
'';
meta = with lib; {
homepage = "https://sourceforge.net/projects/rkflashtool/";
description = "Tools for flashing Rockchip devices";
platforms = platforms.linux;
maintainers = [ maintainers.viric ];
license = licenses.bsd2;
};
}