summary refs log tree commit diff
path: root/pkgs/games/gav/default.nix
blob: e42afefb8308ae5de5ef3e5aeaecf11bedc6139e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{stdenv, fetchurl, SDL, SDL_image, SDL_mixer, SDL_net} :

stdenv.mkDerivation {
  name = "gav-0.9.0";

  src = fetchurl {
    url = "mirror://sourceforge/gav/gav-0.9.0.tar.gz";
    sha256 = "8f0deb8b2cd775b339229054f4f282583a4cfbcba9d27a6213cf910bab944f3e";
  };

  prePatch = ''
    mkdir -p $out/bin
    sed -e "s@/usr@$out@" -i Makefile
    sed -e "s@/usr@$out@" -i Theme.h
  '';

  patches = [ ./gcc.patch ];
  buildInputs = [SDL SDL_image SDL_mixer SDL_net];

  meta = {
    description = "Remake of AV Arcade Volleyball";
    homepage = "http://gav.sourceforge.net/";
    license = stdenv.lib.licenses.gpl2Plus;
    platforms = stdenv.lib.platforms.linux;
  };
}