Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d9487e8941fe
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d8787a8aacac
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Dec 5, 2017

  1. Copy the full SHA
    cb5ac6a View commit details
  2. Merge pull request #32350 from woffs/etr-0.7.4

    extremetuxracer: 0.6.0 -> 0.7.4
    adisbladis authored Dec 5, 2017

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d8787a8 View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/games/extremetuxracer/default.nix
10 changes: 5 additions & 5 deletions pkgs/games/extremetuxracer/default.nix
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
{ stdenv, fetchurl, mesa, libX11, xproto, tcl, freeglut, freetype
, SDL, SDL_mixer, SDL_image, libXi, inputproto
, sfml, libXi, inputproto
, libXmu, libXext, xextproto, libXt, libSM, libICE
, libpng, pkgconfig, gettext, intltool
}:

stdenv.mkDerivation rec {
version = "0.6.0";
version = "0.7.4";
name = "extremetuxracer-${version}";

src = fetchurl {
url = "mirror://sourceforge/extremetuxracer/etr-${version}.tar.xz";
sha256 = "0fl9pwkywqnsmgr6plfj9zb05xrdnl5xb2hcmbjk7ap9l4cjfca4";
sha256 = "0d2j4ybdjmimg67v2fndgahgq4fvgz3fpfb3a4l1ar75n6hy776s";
};

buildInputs = [
mesa libX11 xproto tcl freeglut freetype
SDL SDL_mixer SDL_image libXi inputproto
sfml libXi inputproto
libXmu libXext xextproto libXt libSM libICE
libpng pkgconfig gettext intltool
];

configureFlags = [ "--with-tcl=${tcl}/lib" ];

preConfigure = ''
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${SDL.dev}/include/SDL"
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE"
'';

meta = {