mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #84611 from AndersonTorres/update-stella
stella: 4.1.1 -> 6.1.1
This commit is contained in:
commit
972748bc31
1 changed files with 10 additions and 6 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue