nixpkgs/pkgs/misc/emulators/atari800/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

34 lines
1 KiB
Nix

{ stdenv, fetchurl
, unzip, zlib, SDL, readline, mesa, libX11 }:
with stdenv.lib;
stdenv.mkDerivation rec{
name = "atari800-${version}";
version = "3.1.0";
src = fetchurl {
url = "mirror://sourceforge/atari800/atari800/${version}/${name}.tar.gz";
sha256 = "030yz5l1wyq9l0dmiimiiwpzrjr43whycd409xhhpnrdx76046wh";
};
buildInputs = [ unzip zlib SDL readline mesa libX11 ];
configureFlags = "--target=default --with-video=sdl --with-sound=sdl --with-readline --with-opengl --with-x --enable-riodevice";
preConfigure = "cd src";
meta = {
homepage = http://atari800.sourceforge.net/;
description = "An 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.
'';
maintainers = [ maintainers.AndersonTorres ];
license = licenses.gpl2Plus;
platforms = stdenv.lib.platforms.linux;
};
}