stella: 4.1.1 -> 6.1.1
This commit is contained in:
parent
d7b98129fe
commit
4a68f9de50
1 changed files with 8 additions and 6 deletions
|
@ -1,14 +1,16 @@
|
|||
{ 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 ];
|
||||
|
@ -23,7 +25,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;
|
||||
|
|
Loading…
Reference in a new issue