stella: 6.2.1 -> 6.3
This commit is contained in:
parent
b3b5d63cb6
commit
492507697a
@ -1,24 +1,22 @@
|
|||||||
{ stdenv, fetchFromGitHub, pkgconfig, SDL2 }:
|
{ stdenv, fetchFromGitHub, pkg-config, SDL2 }:
|
||||||
|
|
||||||
with stdenv.lib;
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
pname = "stella";
|
pname = "stella";
|
||||||
version = "6.3";
|
version = "6.3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "stella-emu";
|
owner = "stella-emu";
|
||||||
repo = "stella";
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0a687qdd1qxdz2wzx557vgylv4c37cpypz2gr7p432rgymmzdcg6";
|
sha256 = "sha256-5rH2a/Uvi0HuyU/86y87g5FN/dunlP65+K3j0Bo+yCg=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
buildInputs = [ SDL2 ];
|
buildInputs = [ SDL2 ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib;{
|
||||||
description = "An open-source Atari 2600 VCS emulator";
|
description = "An open-source Atari 2600 VCS emulator";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Stella is a multi-platform Atari 2600 VCS emulator released under
|
Stella is a multi-platform Atari 2600 VCS emulator released under
|
||||||
|
Loading…
x
Reference in New Issue
Block a user