2020-10-11 02:02:43 +01:00
|
|
|
{ stdenv, fetchFromGitHub, pkg-config, SDL2 }:
|
2014-08-31 18:25:39 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "stella";
|
2020-10-10 15:06:08 +01:00
|
|
|
version = "6.3";
|
2014-08-31 18:25:39 +01:00
|
|
|
|
2020-04-07 15:29:32 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "stella-emu";
|
2020-10-11 02:02:43 +01:00
|
|
|
repo = pname;
|
2020-04-07 15:29:32 +01:00
|
|
|
rev = version;
|
2020-10-11 02:02:43 +01:00
|
|
|
sha256 = "sha256-5rH2a/Uvi0HuyU/86y87g5FN/dunlP65+K3j0Bo+yCg=";
|
2014-08-31 18:25:39 +01:00
|
|
|
};
|
|
|
|
|
2020-10-11 02:02:43 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 22:26:13 +01:00
|
|
|
buildInputs = [ SDL2 ];
|
2020-10-02 09:31:30 +01:00
|
|
|
|
2020-04-09 12:44:30 +01:00
|
|
|
enableParallelBuilding = true;
|
2014-08-31 18:25:39 +01:00
|
|
|
|
2020-10-11 02:02:43 +01:00
|
|
|
meta = with stdenv.lib;{
|
2014-08-31 18:25:39 +01:00
|
|
|
description = "An open-source Atari 2600 VCS emulator";
|
|
|
|
longDescription = ''
|
|
|
|
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.
|
2020-10-02 09:31:30 +01:00
|
|
|
As of its 3.5 release, Stella is officially donationware.
|
2014-08-31 18:25:39 +01:00
|
|
|
'';
|
2020-10-02 08:58:50 +01:00
|
|
|
homepage = "https://stella-emu.github.io/";
|
2014-08-31 18:25:39 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|