Merge pull request #84611 from AndersonTorres/update-stella
stella: 4.1.1 -> 6.1.1
This commit is contained in:
commit
972748bc31
@ -1,18 +1,22 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, SDL2 }:
|
{ stdenv, fetchFromGitHub, pkgconfig, SDL2 }:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
pname = "stella";
|
pname = "stella";
|
||||||
version = "4.6.1";
|
version = "6.1.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "mirror://sourceforge/project/stella/stella/${version}/${pname}-${version}-src.tar.gz";
|
owner = "stella-emu";
|
||||||
sha256 = "126jph21b70jlxapzmll8pq36i53lb304hbsiap25160vdqid4n1";
|
repo = "stella";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1iwhslrkq887v035j68lhblybww8r792515rp2m5qzmdgnjzsvbb";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ SDL2 ];
|
buildInputs = [ SDL2 ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "An open-source Atari 2600 VCS emulator";
|
description = "An open-source Atari 2600 VCS emulator";
|
||||||
@ -23,7 +27,7 @@ stdenv.mkDerivation rec {
|
|||||||
maintained by Stephen Anthony.
|
maintained by Stephen Anthony.
|
||||||
As of its 3.5 release, Stella is officially donationware.
|
As of its 3.5 release, Stella is officially donationware.
|
||||||
'';
|
'';
|
||||||
homepage = http://stella.sourceforge.net/;
|
homepage = "http://stella-emu.github.io/";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = [ maintainers.AndersonTorres ];
|
maintainers = [ maintainers.AndersonTorres ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user