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:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
27
pkgs/games/tennix/default.nix
Normal file
27
pkgs/games/tennix/default.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{lib, stdenv, fetchurl, SDL, SDL_mixer, SDL_image, SDL_ttf, SDL_net, python2 } :
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "tennix";
|
||||
version = "1.1";
|
||||
src = fetchurl {
|
||||
url = "https://icculus.org/tennix/downloads/tennix-${version}.tar.gz";
|
||||
sha256 = "0np5kw1y7i0z0dsqx4r2nvmq86qj8hv3mmgavm3hxraqnds5z8cm";
|
||||
};
|
||||
|
||||
buildInputs = [ python2 SDL SDL_mixer SDL_image SDL_ttf SDL_net ];
|
||||
|
||||
patches = [ ./fix_FTBFS.patch ];
|
||||
|
||||
preConfigure = ''
|
||||
makeFlags="PREFIX=$out"
|
||||
installFlags="PREFIX=$out install"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://icculus.org/tennix/";
|
||||
description = "Classic Championship Tour 2011";
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ pSub ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue