depot/third_party/nixpkgs/pkgs/misc/emulators/stella/default.nix
Default email 510ba8c3d9 Project import generated by Copybara.
GitOrigin-RevId: 069f183f16c3ea5d4b6e7625433b92eba77534f7
2020-11-15 05:44:38 -08:00

33 lines
957 B
Nix

{ stdenv, fetchFromGitHub, pkg-config, SDL2 }:
stdenv.mkDerivation rec {
pname = "stella";
version = "6.4";
src = fetchFromGitHub {
owner = "stella-emu";
repo = pname;
rev = version;
sha256 = "0gva6pw5c1pplcf2g48zmm24h1134v0vr705rbzj4v6ifp3adrsl";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ SDL2 ];
enableParallelBuilding = true;
meta = with stdenv.lib;{
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 = "https://stella-emu.github.io/";
license = licenses.gpl2;
maintainers = [ maintainers.AndersonTorres ];
platforms = platforms.linux;
};
}