2021-02-05 00:26:06 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
|
|
|
, SDL2
|
|
|
|
}:
|
2014-08-31 19:25:39 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "stella";
|
2021-03-02 22:07:55 +01:00
|
|
|
version = "6.5.2";
|
2014-08-31 19:25:39 +02:00
|
|
|
|
2020-04-07 16:29:32 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "stella-emu";
|
2020-10-11 03:02:43 +02:00
|
|
|
repo = pname;
|
2020-04-07 16:29:32 +02:00
|
|
|
rev = version;
|
2021-03-02 22:07:55 +01:00
|
|
|
hash = "sha256-CDLMOqSgRx75tjBoLycis/cckCNwgdlb9TRBlD3Dd04=";
|
2014-08-31 19:25:39 +02:00
|
|
|
};
|
|
|
|
|
2020-10-11 03:02:43 +02:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 23:26:13 +02:00
|
|
|
buildInputs = [ SDL2 ];
|
2020-10-02 10:31:30 +02:00
|
|
|
|
2020-04-09 13:44:30 +02:00
|
|
|
enableParallelBuilding = true;
|
2014-08-31 19:25:39 +02:00
|
|
|
|
2021-01-15 14:21:58 +01:00
|
|
|
meta = with lib;{
|
2021-02-05 00:26:06 +01:00
|
|
|
homepage = "https://stella-emu.github.io/";
|
2014-08-31 19:25:39 +02:00
|
|
|
description = "An open-source Atari 2600 VCS emulator";
|
|
|
|
longDescription = ''
|
2021-02-05 00:26:06 +01:00
|
|
|
Stella is a multi-platform Atari 2600 VCS emulator released under the GNU
|
|
|
|
General Public License (GPL). Stella was originally developed for Linux by
|
|
|
|
Bradford W. Mott, and is currently maintained by Stephen Anthony. Since
|
|
|
|
its original release several people have joined the development team to
|
|
|
|
port Stella to other operating systems such as AcornOS, AmigaOS, DOS,
|
|
|
|
FreeBSD, IRIX, Linux, OS/2, MacOS, Unix, and Windows. The development team
|
|
|
|
is working hard to perfect the emulator and we hope you enjoy our effort.
|
|
|
|
|
|
|
|
As of its 3.5 release, Stella is officially donationware.
|
2014-08-31 19:25:39 +02:00
|
|
|
'';
|
2021-03-02 22:07:55 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
|
|
platforms = platforms.unix;
|
2014-08-31 19:25:39 +02:00
|
|
|
};
|
|
|
|
}
|