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
39
pkgs/games/extremetuxracer/default.nix
Normal file
39
pkgs/games/extremetuxracer/default.nix
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
{ lib, stdenv, fetchurl, libGLU, libGL, libX11, xorgproto, tcl, freeglut, freetype
|
||||
, sfml, libXi
|
||||
, libXmu, libXext, libXt, libSM, libICE
|
||||
, libpng, pkg-config, gettext, intltool
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.8.1";
|
||||
pname = "extremetuxracer";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/extremetuxracer/etr-${version}.tar.xz";
|
||||
sha256 = "sha256-ktqWPtMqub/xJjRu37lUnocdfDzsdT9KxQmODVPDg0E=";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
libGLU libGL libX11 xorgproto tcl freeglut freetype
|
||||
sfml libXi
|
||||
libXmu libXext libXt libSM libICE
|
||||
libpng pkg-config gettext intltool
|
||||
];
|
||||
|
||||
configureFlags = [ "--with-tcl=${tcl}/lib" ];
|
||||
|
||||
preConfigure = ''
|
||||
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "High speed arctic racing game based on Tux Racer";
|
||||
longDescription = ''
|
||||
ExtremeTuxRacer - Tux lies on his belly and accelerates down ice slopes.
|
||||
'';
|
||||
license = lib.licenses.gpl2Plus;
|
||||
homepage = "https://sourceforge.net/projects/extremetuxracer/";
|
||||
maintainers = with lib.maintainers; [ ];
|
||||
platforms = with lib.platforms; linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue