nixpkgs/pkgs/misc/emulators/atari800/default.nix

44 lines
1.2 KiB
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook
2019-11-10 16:44:34 +00:00
, unzip, zlib, SDL, readline, libGLU, libGL, libX11 }:
2021-01-15 13:21:58 +00:00
with lib;
stdenv.mkDerivation rec {
pname = "atari800";
version = "4.2.0";
2015-04-13 08:35:43 +00:00
src = fetchFromGitHub {
owner = "atari800";
repo = "atari800";
rev = "ATARI800_${replaceChars ["."] ["_"] version}";
sha256 = "15l08clqqayi9izrgsz9achan6gl4x57wqsc8mad3yn0xayzz3qy";
};
2015-04-13 08:35:43 +00:00
nativeBuildInputs = [ autoreconfHook ];
2019-11-10 16:44:34 +00:00
buildInputs = [ unzip zlib SDL readline libGLU libGL libX11 ];
2015-04-13 08:35:43 +00:00
2018-07-25 21:44:21 +00:00
configureFlags = [
"--target=default"
"--with-video=sdl"
"--with-sound=sdl"
"--with-readline"
"--with-opengl"
"--with-x"
"--enable-riodevice"
];
2015-04-13 08:35:43 +00:00
meta = {
homepage = "https://atari800.github.io/";
2015-04-13 08:35:43 +00:00
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 ];
2016-08-02 15:51:05 +00:00
license = licenses.gpl2Plus;
2021-01-15 13:21:58 +00:00
platforms = lib.platforms.linux;
2016-08-02 15:51:05 +00:00
};
}