asc: 2.4.0.0 -> 2.6.0.0; maintain

+5 -4
+5 -4
pkgs/games/asc/default.nix
··· 1 { fetchurl, stdenv, SDL, SDL_image, SDL_mixer, SDL_sound, libsigcxx, physfs 2 , boost, expat, freetype, libjpeg, wxGTK, lua, perl, pkgconfig, zlib, zip, bzip2, 3 - libpng }: 4 5 stdenv.mkDerivation rec { 6 - name = "asc-2.4.0.0"; 7 8 src = fetchurl { 9 url = "mirror://sourceforge/asc-hq/${name}.tar.bz2"; 10 - sha256 = "1r011l4gsliky6szjvda8xzyhkkc50ahrr7p14911v5ydar0w3hh"; 11 }; 12 13 configureFlags = [ "--disable-paragui" "--disable-paraguitest" ]; ··· 18 buildInputs = [ 19 SDL SDL_image SDL_mixer SDL_sound libsigcxx physfs boost expat 20 freetype libjpeg wxGTK lua perl pkgconfig zlib zip bzip2 libpng 21 ]; 22 23 meta = with stdenv.lib; { ··· 33 34 license = licenses.gpl2Plus; 35 36 - maintainers = with maintainers; [ viric ]; 37 platforms = platforms.linux; 38 }; 39 }
··· 1 { fetchurl, stdenv, SDL, SDL_image, SDL_mixer, SDL_sound, libsigcxx, physfs 2 , boost, expat, freetype, libjpeg, wxGTK, lua, perl, pkgconfig, zlib, zip, bzip2, 3 + libpng, libtiff, fluidsynth, libmikmod }: 4 5 stdenv.mkDerivation rec { 6 + name = "asc-2.6.0.0"; 7 8 src = fetchurl { 9 url = "mirror://sourceforge/asc-hq/${name}.tar.bz2"; 10 + sha256 = "1fybasb6srqfg6pqbvh0s0vvzjq9r0n6aq0z44hs7n68kmaam775"; 11 }; 12 13 configureFlags = [ "--disable-paragui" "--disable-paraguitest" ]; ··· 18 buildInputs = [ 19 SDL SDL_image SDL_mixer SDL_sound libsigcxx physfs boost expat 20 freetype libjpeg wxGTK lua perl pkgconfig zlib zip bzip2 libpng 21 + libtiff fluidsynth libmikmod 22 ]; 23 24 meta = with stdenv.lib; { ··· 34 35 license = licenses.gpl2Plus; 36 37 + maintainers = with maintainers; [ viric raskin ]; 38 platforms = platforms.linux; 39 }; 40 }