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,32 @@
{ lib, stdenv, fetchurl, fixDarwinDylibNames }:
stdenv.mkDerivation rec {
pname = "libnatpmp";
version = "20150609";
src = fetchurl {
name = "${pname}-${version}.tar.gz";
url = "http://miniupnp.free.fr/files/download.php?file=${pname}-${version}.tar.gz";
sha256 = "1c1n8n7mp0amsd6vkz32n8zj3vnsckv308bb7na0dg0r8969rap1";
};
makeFlags = [
"INSTALLPREFIX=$(out)"
"CC:=$(CC)"
];
nativeBuildInputs = lib.optional stdenv.isDarwin fixDarwinDylibNames;
postFixup = ''
chmod +x $out/lib/*
'';
meta = with lib; {
description = "NAT-PMP client";
homepage = "http://miniupnp.free.fr/libnatpmp.html";
license = licenses.bsd3;
maintainers = with maintainers; [ orivej ];
mainProgram = "natpmpc";
platforms = platforms.all;
};
}