nixpkgs/pkgs/games/gav/default.nix

27 lines
660 B
Nix
Raw Normal View History

2021-01-15 04:31:39 +00:00
{lib, 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/";
2021-01-15 04:31:39 +00:00
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux;
};
}