lol

hatari: update from 1.6.2 to 1.8.0

+4 -3
+4 -3
pkgs/misc/emulators/hatari/default.nix
··· 1 1 { stdenv, fetchurl, zlib, SDL, cmake }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "hatari-1.6.2"; 4 + name = "hatari-1.8.0"; 5 5 6 6 src = fetchurl { 7 - url = "http://download.tuxfamily.org/hatari/1.6.2/${name}.tar.bz2"; 8 - sha256 = "0gqvfqqd0lg3hi261rwh6gi2b5kmza480kfzx43d4l49xcq09pi0"; 7 + url = "http://download.tuxfamily.org/hatari/1.8.0/${name}.tar.bz2"; 8 + sha256 = "1szznnndmbyc71751hir3dhybmbrx3rnxs6klgbv9qvqlmmlikvy"; 9 9 }; 10 10 11 11 # For pthread_cancel ··· 18 18 description = "Atari ST/STE/TT/Falcon emulator"; 19 19 license = stdenv.lib.licenses.gpl2Plus; 20 20 platforms = stdenv.lib.platforms.linux; 21 + maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 21 22 }; 22 23 }