lol

Merge pull request #7389 from AndersonTorres/atari++

Atari++: 1.46 -> 1.73

+24 -11
+24 -11
pkgs/misc/emulators/atari++/default.nix
··· 1 - {stdenv, fetchurl, x11, SDL}: 1 + { stdenv, fetchurl 2 + , libX11, SDL }: 2 3 3 - stdenv.mkDerivation { 4 - name = "atari++-1.46"; 5 - # builder = ./builder.sh; 4 + with stdenv.lib; 5 + stdenv.mkDerivation rec{ 6 + name = "atari++-${version}"; 7 + version = "1.73"; 8 + 6 9 src = fetchurl { 7 - url = http://www.math.tu-berlin.de/~thor/atari++/download/atari++.tgz; 8 - md5 = "0619ec6b63852233111aa0bd263c8ea2"; 10 + url = "http://www.xl-project.com/download/atari++_${version}.tar.gz"; 11 + sha256 = "1y5kwh08717jsa5agxrvxnggnwxq36irrid9rzfhca1nnvp9a45l"; 9 12 }; 10 - # rom = fetchurl { 11 - # url = mirror://sourceforge/atari800/xf25.zip; 12 - # md5 = "4dc3b6b4313e9596c4d474785a37b94d"; 13 - # }; 14 - buildInputs = [x11 SDL]; 13 + 14 + buildInputs = [ libX11 SDL ]; 15 + meta = { 16 + homepage = http://www.xl-project.com/; 17 + description = "An enhanced, cycle-accurated Atari emulator"; 18 + longDescription = '' 19 + The Atari++ Emulator is a Unix based emulator of the Atari eight 20 + bit computers, namely the Atari 400 and 800, the Atari 400XL, 21 + 800XL and 130XE, and the Atari 5200 game console. The emulator 22 + is auto-configurable and will compile on a variety of systems 23 + (Linux, Solaris, Irix). 24 + ''; 25 + maintainers = [ maintainers.AndersonTorres ]; 26 + license = licenses.gpl2Plus; 27 + }; 15 28 }