atari800: 4.0.0 -> 4.2.0
* atari800: 4.0.0 -> 4.2.0 * Update pkgs/misc/emulators/atari800/default.nix Co-Authored-By: Ryan Mulligan <ryan@ryantm.com> * Update pkgs/misc/emulators/atari800/default.nix Co-Authored-By: Ryan Mulligan <ryan@ryantm.com> Co-authored-by: Ryan Mulligan <ryan@ryantm.com>
This commit is contained in:
parent
08c7b8187f
commit
5040cd56b0
|
@ -1,16 +1,20 @@
|
||||||
{ stdenv, fetchurl
|
{ stdenv, fetchFromGitHub, autoreconfHook
|
||||||
, unzip, zlib, SDL, readline, libGLU, libGL, libX11 }:
|
, unzip, zlib, SDL, readline, libGLU, libGL, libX11 }:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
stdenv.mkDerivation rec{
|
stdenv.mkDerivation rec{
|
||||||
pname = "atari800";
|
pname = "atari800";
|
||||||
version = "4.0.0";
|
version = "4.2.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "mirror://sourceforge/atari800/atari800/${version}/${pname}-${version}.tar.gz";
|
owner = "atari800";
|
||||||
sha256 = "1dcynsf8i52y7zyg62bkbhl3rdd22ss95zs2s9jm4y5jvn4vks88";
|
repo = "atari800";
|
||||||
|
rev = "ATARI800_${replaceChars ["."] ["_"] version}";
|
||||||
|
sha256 = "15l08clqqayi9izrgsz9achan6gl4x57wqsc8mad3yn0xayzz3qy";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
|
|
||||||
buildInputs = [ unzip zlib SDL readline libGLU libGL libX11 ];
|
buildInputs = [ unzip zlib SDL readline libGLU libGL libX11 ];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
|
@ -23,10 +27,8 @@ stdenv.mkDerivation rec{
|
||||||
"--enable-riodevice"
|
"--enable-riodevice"
|
||||||
];
|
];
|
||||||
|
|
||||||
preConfigure = "cd src";
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://atari800.sourceforge.net/;
|
homepage = "https://atari800.github.io/";
|
||||||
description = "An Atari 8-bit emulator";
|
description = "An Atari 8-bit emulator";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Atari800 is the emulator of Atari 8-bit computer systems and
|
Atari800 is the emulator of Atari 8-bit computer systems and
|
||||||
|
|
Loading…
Reference in New Issue