nixpkgs/pkgs/misc/emulators/stella/default.nix
Anderson Torres 52a2005e7c
Update pkgs/misc/emulators/stella/default.nix
Co-Authored-By: Christoph Neidahl <christoph.neidahl@gmail.com>
2020-04-09 08:44:30 -03:00

36 lines
964 B
Nix

{ stdenv, fetchFromGitHub, pkgconfig, SDL2 }:
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "stella";
version = "6.1.1";
src = fetchFromGitHub {
owner = "stella-emu";
repo = "stella";
rev = version;
sha256 = "1iwhslrkq887v035j68lhblybww8r792515rp2m5qzmdgnjzsvbb";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ SDL2 ];
enableParallelBuilding = true;
meta = {
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.
As of its 3.5 release, Stella is officially donationware.
'';
homepage = "http://stella-emu.github.io/";
license = licenses.gpl2;
maintainers = [ maintainers.AndersonTorres ];
platforms = platforms.linux;
};
}