2020-10-11 03:02:43 +02:00
|
|
|
{ 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";
|
2020-11-12 06:31:41 +01:00
|
|
|
version = "6.4";
|
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;
|
2020-11-12 06:31:41 +01:00
|
|
|
sha256 = "0gva6pw5c1pplcf2g48zmm24h1134v0vr705rbzj4v6ifp3adrsl";
|
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
|
|
|
|
2020-10-11 03:02:43 +02:00
|
|
|
meta = with stdenv.lib;{
|
2014-08-31 19:25:39 +02: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 10:31:30 +02:00
|
|
|
As of its 3.5 release, Stella is officially donationware.
|
2014-08-31 19:25:39 +02:00
|
|
|
'';
|
2020-10-02 09:58:50 +02:00
|
|
|
homepage = "https://stella-emu.github.io/";
|
2014-08-31 19:25:39 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|