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, fetchFromGitHub, ncurses }:
stdenv.mkDerivation {
pname = "netris";
version = "0.52";
src = fetchFromGitHub {
owner = "naclander";
repo = "netris";
rev = "6773c9b2d39a70481a5d6eb5368e9ced6229ad2b";
sha256 = "0gmxbpn50pnffidwjchkzph9rh2jm4wfq7hj8msp5vhdq5h0z9hm";
};
buildInputs = [
ncurses
];
configureScript = "./Configure";
dontAddPrefix = true;
installPhase = ''
mkdir -p $out/bin
cp ./netris $out/bin
'';
meta = with lib; {
description = "A free networked version of T*tris";
license = licenses.gpl2;
maintainers = with maintainers; [ patryk27 ];
platforms = platforms.linux;
};
}