From 85eec7443355f2ebc54dfeae0d7ecefbbfbd6660 Mon Sep 17 00:00:00 2001 From: Mateusz Kowalczyk Date: Sun, 21 Sep 2014 18:36:56 +0100 Subject: [PATCH] hatari: update from 1.6.2 to 1.8.0 --- pkgs/misc/emulators/hatari/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/misc/emulators/hatari/default.nix b/pkgs/misc/emulators/hatari/default.nix index 5c9138ed2e23..1206bdefcb19 100644 --- a/pkgs/misc/emulators/hatari/default.nix +++ b/pkgs/misc/emulators/hatari/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, zlib, SDL, cmake }: stdenv.mkDerivation rec { - name = "hatari-1.6.2"; + name = "hatari-1.8.0"; src = fetchurl { - url = "http://download.tuxfamily.org/hatari/1.6.2/${name}.tar.bz2"; - sha256 = "0gqvfqqd0lg3hi261rwh6gi2b5kmza480kfzx43d4l49xcq09pi0"; + url = "http://download.tuxfamily.org/hatari/1.8.0/${name}.tar.bz2"; + sha256 = "1szznnndmbyc71751hir3dhybmbrx3rnxs6klgbv9qvqlmmlikvy"; }; # For pthread_cancel @@ -18,5 +18,6 @@ stdenv.mkDerivation rec { description = "Atari ST/STE/TT/Falcon emulator"; license = stdenv.lib.licenses.gpl2Plus; platforms = stdenv.lib.platforms.linux; + maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; }; }