aboutsummaryrefslogtreecommitdiff
path: root/pkgs/misc/emulators/stella/default.nix
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2020-04-07 11:29:32 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2020-04-07 11:29:47 -0300
commit4a68f9de50daa83df99cf9f01a20fd9b9562e48e (patch)
tree661d224f7c3e5c67b0c5edb1b8e648df52c295ff /pkgs/misc/emulators/stella/default.nix
parentd7b98129fea1ed08a645096b16c424e3cabf77e5 (diff)
stella: 4.1.1 -> 6.1.1
Diffstat (limited to 'pkgs/misc/emulators/stella/default.nix')
-rw-r--r--pkgs/misc/emulators/stella/default.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/misc/emulators/stella/default.nix b/pkgs/misc/emulators/stella/default.nix
index c2d98cda060d..707b3392170d 100644
--- a/pkgs/misc/emulators/stella/default.nix
+++ b/pkgs/misc/emulators/stella/default.nix
@@ -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;