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

View File

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