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,23 @@
{lib, stdenv, fetchurl, ncurses}:
stdenv.mkDerivation rec {
pname = "moon-buggy";
version = "1.0.51";
buildInputs = [
ncurses
];
src = fetchurl {
url = "http://m.seehuhn.de/programs/moon-buggy-${version}.tar.gz";
sha256 = "0gyjwlpx0sd728dwwi7pwks4zfdy9rm1w1xbhwg6zip4r9nc2b9m";
};
meta = {
description = "A simple character graphics game where you drive some kind of car across the moon's surface";
license = lib.licenses.gpl2;
maintainers = [lib.maintainers.rybern];
platforms = lib.platforms.linux;
homepage = "https://www.seehuhn.de/pages/moon-buggy";
};
}