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 @@
{ lib, stdenv, fetchFromGitHub, SDL2, wxGTK } :
stdenv.mkDerivation rec {
pname = "sound-of-sorting";
version = "2017-12-23";
src = fetchFromGitHub {
owner = "bingmann";
repo = "sound-of-sorting";
rev = "5884a357af5775fb57d89eb028d4bf150760db75";
sha256 = "01bpzn38cwn9zlydzvnfz9k7mxdnjnvgnbcpx7i4al8fha7x9lw8";
};
buildInputs =
[ wxGTK SDL2 ];
preConfigure = ''
export SDL_CONFIG=${SDL2.dev}/bin/sdl2-config
'';
meta = with lib; {
description = "Audibilization and Visualization of Sorting Algorithms";
homepage = "https://panthema.net/2013/sound-of-sorting/";
license = with licenses; gpl3;
maintainers = with maintainers; [ AndersonTorres ];
};
}