1{ stdenv, fetchurl
2, libX11, SDL }:
3
4with stdenv.lib;
5stdenv.mkDerivation rec{
6 name = "atari++-${version}";
7 version = "1.73";
8
9 src = fetchurl {
10 url = "http://www.xl-project.com/download/atari++_${version}.tar.gz";
11 sha256 = "1y5kwh08717jsa5agxrvxnggnwxq36irrid9rzfhca1nnvp9a45l";
12 };
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 };
28}