lol
fork

Configure Feed

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

at v206 22 lines 601 B view raw
1{stdenv, fetchurl, SDL, SDL_image, SDL_mixer}: 2 3stdenv.mkDerivation { 4 name = "vectoroids-1.1.0"; 5 src = fetchurl { 6 url = ftp://ftp.tuxpaint.org/unix/x/vectoroids/src/vectoroids-1.1.0.tar.gz; 7 sha256 = "0bkvd4a1v496w0vlvqyi1a6p25ssgpkchxxxi8899sb72wlds54d"; 8 }; 9 10 buildInputs = [ SDL SDL_image SDL_mixer]; 11 12 preConfigure = '' 13 sed -i s,/usr/local,$out, Makefile 14 mkdir -p $out/bin 15 ''; 16 17 meta = { 18 homepage = http://www.newbreedsoftware.com/vectoroids/; 19 description = "Clone of the classic arcade game Asteroids by Atari"; 20 license = stdenv.lib.licenses.gpl2Plus; 21 }; 22}