Merge pull request #281434 from atorres1985-contrib/stella

stella: 6.7 -> 6.7.1
This commit is contained in:
Mario Rodas 2024-01-20 11:02:07 -05:00 committed by GitHub
commit efb46f81e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 20 additions and 15 deletions

View File

@ -1,30 +1,35 @@
{ lib { lib
, stdenv
, fetchFromGitHub
, pkg-config
, SDL2 , SDL2
, fetchFromGitHub
, sqlite
, pkg-config
, stdenv
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation (finalAttrs: {
pname = "stella"; pname = "stella";
version = "6.7"; version = "6.7.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "stella-emu"; owner = "stella-emu";
repo = pname; repo = "stella";
rev = version; rev = finalAttrs.version;
hash = "sha256-E8vbBbsVMOSY3iSSE+UCwBwmfHU7Efmre1cYlexVZ+E="; hash = "sha256-4z6rFF6XqfyS9zZ4ByvTZi7cSqxpF4EcLffPbId5ppg=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
SDL2
pkg-config pkg-config
]; ];
buildInputs = [ buildInputs = [
SDL2 SDL2
sqlite
]; ];
meta = with lib;{ strictDeps = true;
meta = {
homepage = "https://stella-emu.github.io/"; homepage = "https://stella-emu.github.io/";
description = "An open-source Atari 2600 VCS emulator"; description = "An open-source Atari 2600 VCS emulator";
longDescription = '' longDescription = ''
@ -38,8 +43,10 @@ stdenv.mkDerivation rec {
As of its 3.5 release, Stella is officially donationware. As of its 3.5 release, Stella is officially donationware.
''; '';
license = licenses.gpl2Plus; changelog = "https://github.com/stella-emu/stella/releases/tag/${finalAttrs.src.rev}";
maintainers = with maintainers; [ AndersonTorres ]; license = with lib.licenses; [ gpl2Plus ];
platforms = platforms.unix; mainProgram = "stella";
maintainers = with lib.maintainers; [ AndersonTorres ];
platforms = lib.platforms.unix;
}; };
} })

View File

@ -2846,8 +2846,6 @@ with pkgs;
withGtk = true; withGtk = true;
}; };
stella = callPackage ../applications/emulators/stella { };
tamatool = callPackage ../applications/emulators/tamatool { }; tamatool = callPackage ../applications/emulators/tamatool { };
termtekst = callPackage ../applications/emulators/termtekst { }; termtekst = callPackage ../applications/emulators/termtekst { };