2020-04-07 15:29:32 +01:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, SDL2 }:
|
2014-08-31 18:25:39 +01:00
|
|
|
|
2015-04-06 00:58:09 +01:00
|
|
|
with stdenv.lib;
|
2014-08-31 18:25:39 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "stella";
|
2020-07-02 20:33:26 +01:00
|
|
|
version = "6.2.1";
|
2014-08-31 18:25:39 +01:00
|
|
|
|
2020-04-07 15:29:32 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "stella-emu";
|
|
|
|
repo = "stella";
|
|
|
|
rev = version;
|
2020-07-02 20:33:26 +01:00
|
|
|
sha256 = "1yhszswwg217x8d2qlcasi9l97y1z6w1pgliys4p27zv5b1ygy7p";
|
2014-08-31 18:25:39 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ SDL2 ];
|
2020-04-08 19:49:46 +01:00
|
|
|
|
2020-04-09 12:44:30 +01:00
|
|
|
enableParallelBuilding = true;
|
2014-08-31 18:25:39 +01:00
|
|
|
|
2015-04-06 00:58:09 +01:00
|
|
|
meta = {
|
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.
|
2014-12-30 02:31:03 +00:00
|
|
|
As of its 3.5 release, Stella is officially donationware.
|
2014-08-31 18:25:39 +01:00
|
|
|
'';
|
2020-04-07 15:29:32 +01:00
|
|
|
homepage = "http://stella-emu.github.io/";
|
2014-08-31 18:25:39 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|