mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
61 lines
1.3 KiB
Nix
61 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, SDL
|
|
, autoreconfHook
|
|
, fetchFromGitHub
|
|
, libGL
|
|
, libGLU
|
|
, libX11
|
|
, readline
|
|
, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "atari800";
|
|
version = "5.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "atari800";
|
|
repo = "atari800";
|
|
rev = "ATARI800_${lib.replaceStrings ["."] ["_"] finalAttrs.version}";
|
|
hash = "sha256-D66YRRTqdoV9TqDFonJ9XNpfP52AicuYgdiW27RCIuQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
];
|
|
|
|
buildInputs = [
|
|
SDL
|
|
libGL
|
|
libGLU
|
|
libX11
|
|
readline
|
|
zlib
|
|
];
|
|
|
|
configureFlags = [
|
|
"--target=default"
|
|
(lib.enableFeature true "riodevice")
|
|
(lib.withFeature true "opengl")
|
|
(lib.withFeature true "readline")
|
|
(lib.withFeature true "x")
|
|
(lib.withFeatureAs true "sound" "sdl")
|
|
(lib.withFeatureAs true "video" "sdl")
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://atari800.github.io/";
|
|
description = "Atari 8-bit emulator";
|
|
longDescription = ''
|
|
Atari800 is the emulator of Atari 8-bit computer systems and 5200 game
|
|
console for Unix, Linux, Amiga, MS-DOS, Atari TT/Falcon, MS-Windows, MS
|
|
WinCE, Sega Dreamcast, Android and other systems supported by the SDL
|
|
library.
|
|
'';
|
|
license = with lib.licenses; [ gpl2Plus ];
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|