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,28 @@
{ stdenv
, fetchurl
, lib
}:
stdenv.mkDerivation rec {
pname = "common-licenses";
version = "11.1";
src = fetchurl {
url = "http://deb.debian.org/debian/pool/main/b/base-files/base-files_${version}.tar.xz";
sha256 = "1i3hgd9vs14k819k441iibcgmi2zavnpqbnppyn2cz70kd830nbm";
};
installPhase = ''
mkdir -p $out/share
cp -r licenses $out/share/common-licenses
cat debian/base-files.links | grep common-licenses | sed -e "s|usr|$out|g" -e "s|^|ln -s |g" | bash -x
'';
meta = with lib; {
description = "common-licenses extracted from debian base-files package";
homepage = "https://tracker.debian.org/pkg/base-files";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.mkg20001 ];
};
}