summary refs log tree commit diff
path: root/pkgs/games/ultimatestunts/default.nix
blob: dc221f37dd629ba29b73ac6cda53abae0241e987 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{stdenv, fetchurl, SDL, mesa, SDL_image, freealut, openal, libvorbis,
pkgconfig}:

stdenv.mkDerivation rec {
  name = "ultimate-stunts-0.7.6.1";
  src = fetchurl {
    url = mirror://sourceforge/ultimatestunts/ultimatestunts-srcdata-0761.tar.gz;
    sha256 = "0rd565ml6l927gyq158klhni7myw8mgllhv0xl1fg9m8hlzssgrv";
  };

  buildInputs = [ SDL mesa SDL_image freealut openal libvorbis pkgconfig ];

  meta = {
    homepage = http://www.ultimatestunts.nl/;
    description = "Remake of the popular racing DOS-game Stunts";
    license = "GPLv2+";
    maintainers = with stdenv.lib.maintainers; [viric];
    platforms = with stdenv.lib.platforms; linux;
  };
}