asc: 2.4.0.0 -> 2.6.0.0; maintain

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