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, fetchurl }:
stdenv.mkDerivation rec {
pname = "cl-launch";
version = "4.1.4.1";
src = fetchurl {
url = "http://common-lisp.net/project/xcvb/cl-launch/cl-launch-${version}.tar.gz";
sha256 = "sha256-v5aURs2Verhn2HmGiijvY9br20OTPFrOGBWsb6cHhSQ=";
};
preConfigure = ''
export makeFlags="$makeFlags PREFIX='$out'"
mkdir -p "$out/bin"
'';
preBuild = ''
sed -e 's/\t\t@/\t\t/g' -i Makefile
'';
meta = with lib; {
description = "Common Lisp launcher script";
license = licenses.llgpl21;
maintainers = with maintainers; [ raskin ];
platforms = platforms.unix;
};
}