about summary refs log tree commit diff
path: root/pkgs/misc/emulators
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@gmail.com>2017-02-19 15:27:04 -0300
committerzimbatm <zimbatm@zimbatm.com>2017-02-19 18:27:04 +0000
commit4129697445a84e0291bc53f28166af6147271d3e (patch)
tree510b7d4897c192936eaa8c27199d66bf786f71a2 /pkgs/misc/emulators
parent6dbb3ab03124610dad016fdd52fa2caae969d143 (diff)
downloadnixlib-4129697445a84e0291bc53f28166af6147271d3e.tar
nixlib-4129697445a84e0291bc53f28166af6147271d3e.tar.gz
nixlib-4129697445a84e0291bc53f28166af6147271d3e.tar.bz2
nixlib-4129697445a84e0291bc53f28166af6147271d3e.tar.lz
nixlib-4129697445a84e0291bc53f28166af6147271d3e.tar.xz
nixlib-4129697445a84e0291bc53f28166af6147271d3e.tar.zst
nixlib-4129697445a84e0291bc53f28166af6147271d3e.zip
higan: 101 -> 102 (#22942)
Diffstat (limited to 'pkgs/misc/emulators')
-rw-r--r--pkgs/misc/emulators/higan/default.nix22
1 files changed, 11 insertions, 11 deletions
diff --git a/pkgs/misc/emulators/higan/default.nix b/pkgs/misc/emulators/higan/default.nix
index 8d3537b0ee6d..b1495987e613 100644
--- a/pkgs/misc/emulators/higan/default.nix
+++ b/pkgs/misc/emulators/higan/default.nix
@@ -4,19 +4,18 @@
 , udev
 , mesa, SDL
 , libao, openal, libpulseaudio
-, gtk2, gtksourceview
-}:
+, gtk2, gtksourceview }:
 
 with stdenv.lib;
 stdenv.mkDerivation rec {
 
   name = "higan-${version}";
-  version = "101";
+  version = "102";
   sourceName = "higan_v${version}-source";
 
   src = fetchurl {
     urls = [ "http://download.byuu.org/${sourceName}.7z" ];
-    sha256 = "04vr3fp0b3cwq7q8d9v60qmv08zpcsb5gqn1whl4fvwcxcl22by8";
+    sha256 = "1wcr2sxk0n4rngnf9g2qcjcv70s8rf5cqj195sav1yjwxkrdrnjj";
     curlOpts = "--user-agent 'Mozilla/5.0'"; # the good old user-agent trick...
   };
 
@@ -71,16 +70,17 @@ stdenv.mkDerivation rec {
     longDescription = ''
       Higan (formerly bsnes) is a Nintendo multi-system emulator.
       It currently supports the following systems:
-        Famicom; Super Famicom;
-        Game Boy; Game Boy Color; Game Boy Advance
-        WonderSwan; WonderSwan Color
-      higan also supports the following subsystems:
-        Super Game Boy; BS-X Satellaview; Sufami Turbo
+        - Nintendo's Famicom, Super Famicom (with subsystems: 
+          Super Game Boy, BS-X Satellaview, Sufami Turbo); 
+          Game Boy, Game Boy Color, Game Boy Advance;
+        - Sega's Master System, Game Gear, Mega Drive;
+        - NEC's PC Engine, SuperGrafx;
+        - Bandai' WonderSwan, WonderSwan Color.
     '';
     homepage = http://byuu.org/higan/;
     license = licenses.gpl3Plus;
-    maintainers = [ maintainers.AndersonTorres ];
-    platforms = platforms.linux;
+    maintainers = with maintainers; [ AndersonTorres ];
+    platforms = with platforms; unix;
   };
 }