summary refs log tree commit diff
path: root/pkgs/games/asc
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2017-08-29 16:07:32 +0200
committerMichael Raskin <7c6f434c@mail.ru>2017-08-29 16:07:48 +0200
commite3f4de8940ea4b32d1cbd603f7cf7cb4b00e2cc9 (patch)
treed01ebc58ac1020331de68e0d2414eeb879908189 /pkgs/games/asc
parent3cf149c60de2a2eb2e23b121359b51a0b3935c81 (diff)
downloadnixpkgs-e3f4de8940ea4b32d1cbd603f7cf7cb4b00e2cc9.tar
nixpkgs-e3f4de8940ea4b32d1cbd603f7cf7cb4b00e2cc9.tar.gz
nixpkgs-e3f4de8940ea4b32d1cbd603f7cf7cb4b00e2cc9.tar.bz2
nixpkgs-e3f4de8940ea4b32d1cbd603f7cf7cb4b00e2cc9.tar.lz
nixpkgs-e3f4de8940ea4b32d1cbd603f7cf7cb4b00e2cc9.tar.xz
nixpkgs-e3f4de8940ea4b32d1cbd603f7cf7cb4b00e2cc9.tar.zst
nixpkgs-e3f4de8940ea4b32d1cbd603f7cf7cb4b00e2cc9.zip
asc: 2.4.0.0 -> 2.6.0.0; maintain
Diffstat (limited to 'pkgs/games/asc')
-rw-r--r--pkgs/games/asc/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/games/asc/default.nix b/pkgs/games/asc/default.nix
index e67b92afa76..e532fb75e0b 100644
--- a/pkgs/games/asc/default.nix
+++ b/pkgs/games/asc/default.nix
@@ -1,13 +1,13 @@
 { fetchurl, stdenv, SDL, SDL_image, SDL_mixer, SDL_sound, libsigcxx, physfs
 , boost, expat, freetype, libjpeg, wxGTK, lua, perl, pkgconfig, zlib, zip, bzip2,
-libpng }:
+libpng, libtiff, fluidsynth, libmikmod }:
 
 stdenv.mkDerivation rec {
-  name = "asc-2.4.0.0";
+  name = "asc-2.6.0.0";
 
   src = fetchurl {
     url = "mirror://sourceforge/asc-hq/${name}.tar.bz2";
-    sha256 = "1r011l4gsliky6szjvda8xzyhkkc50ahrr7p14911v5ydar0w3hh";
+    sha256 = "1fybasb6srqfg6pqbvh0s0vvzjq9r0n6aq0z44hs7n68kmaam775";
   };
 
   configureFlags = [ "--disable-paragui" "--disable-paraguitest" ];
@@ -18,6 +18,7 @@ stdenv.mkDerivation rec {
   buildInputs = [
     SDL SDL_image SDL_mixer SDL_sound libsigcxx physfs boost expat
     freetype libjpeg wxGTK lua perl pkgconfig zlib zip bzip2 libpng
+    libtiff fluidsynth libmikmod
   ];
 
   meta = with stdenv.lib; {
@@ -33,7 +34,7 @@ stdenv.mkDerivation rec {
 
     license = licenses.gpl2Plus;
 
-    maintainers = with maintainers; [ viric ];
+    maintainers = with maintainers; [ viric raskin ];
     platforms = platforms.linux;
   };
 }