about summary refs log tree commit diff
path: root/nixpkgs/pkgs/misc/emulators/atari800/default.nix
blob: 6c846e2f0ab3b06220e72dcb607b1436cf6a5e57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ stdenv, fetchFromGitHub, autoreconfHook
, unzip, zlib, SDL, readline, libGLU, libGL, libX11 }:

with stdenv.lib;
stdenv.mkDerivation rec {
  pname = "atari800";
  version = "4.2.0";

  src = fetchFromGitHub {
    owner = "atari800";
    repo = "atari800";
    rev = "ATARI800_${replaceChars ["."] ["_"] version}";
    sha256 = "15l08clqqayi9izrgsz9achan6gl4x57wqsc8mad3yn0xayzz3qy";
  };

  nativeBuildInputs = [ autoreconfHook ];

  buildInputs = [ unzip zlib SDL readline libGLU libGL libX11 ];

  configureFlags = [
    "--target=default"
    "--with-video=sdl"
    "--with-sound=sdl"
    "--with-readline"
    "--with-opengl"
    "--with-x"
    "--enable-riodevice"
  ];

  meta = {
    homepage = "https://atari800.github.io/";
    description = "An Atari 8-bit emulator";
    longDescription = ''
      Atari800 is the emulator of Atari 8-bit computer systems and
      5200 game console for Unix, Linux, Amiga, MS-DOS, Atari
      TT/Falcon, MS-Windows, MS WinCE, Sega Dreamcast, Android and
      other systems supported by the SDL library.
    '';
    maintainers = [ maintainers.AndersonTorres ];
    license = licenses.gpl2Plus;
    platforms = stdenv.lib.platforms.linux;
  };
}