Merge pull request #84611 from AndersonTorres/update-stella

stella: 4.1.1 -> 6.1.1
This commit is contained in:
Aaron Andersen 2020-04-09 08:02:08 -04:00 committed by GitHub
commit 972748bc31
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,18 +1,22 @@
{ stdenv, fetchurl, pkgconfig, SDL2 }:
{ stdenv, fetchFromGitHub, pkgconfig, SDL2 }:
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "stella";
version = "4.6.1";
version = "6.1.1";
src = fetchurl {
url = "mirror://sourceforge/project/stella/stella/${version}/${pname}-${version}-src.tar.gz";
sha256 = "126jph21b70jlxapzmll8pq36i53lb304hbsiap25160vdqid4n1";
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";
@ -23,7 +27,7 @@ stdenv.mkDerivation rec {
maintained by Stephen Anthony.
As of its 3.5 release, Stella is officially donationware.
'';
homepage = http://stella.sourceforge.net/;
homepage = "http://stella-emu.github.io/";
license = licenses.gpl2;
maintainers = [ maintainers.AndersonTorres ];
platforms = platforms.linux;