lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 16.09-beta 26 lines 667 B view raw
1{stdenv, fetchurl, SDL, SDL_image, SDL_mixer, SDL_net} : 2 3stdenv.mkDerivation { 4 name = "gav-0.9.0"; 5 6 src = fetchurl { 7 url = "mirror://sourceforge/gav/gav-0.9.0.tar.gz"; 8 sha256 = "8f0deb8b2cd775b339229054f4f282583a4cfbcba9d27a6213cf910bab944f3e"; 9 }; 10 11 prePatch = '' 12 mkdir -p $out/bin 13 sed -e "s@/usr@$out@" -i Makefile 14 sed -e "s@/usr@$out@" -i Theme.h 15 ''; 16 17 patches = [ ./gcc.patch ]; 18 buildInputs = [SDL SDL_image SDL_mixer SDL_net]; 19 20 meta = { 21 description = "Remake of AV Arcade Volleyball"; 22 homepage = http://gav.sourceforge.net/; 23 license = stdenv.lib.licenses.gpl2Plus; 24 platforms = stdenv.lib.platforms.linux; 25 }; 26}