fs-uae: 2.4.3 -> 2.8.0
This commit is contained in:
parent
e026d5b9c8
commit
22a4d6bd54
@ -1,24 +1,18 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig
|
{ stdenv, fetchurl, pkgconfig
|
||||||
, gettext, gtk2, SDL, zlib, glib, openal, mesa, lua, freetype }:
|
, gettext, gtk2, SDL2, zlib, glib, openal, mesa, lua, freetype, libmpeg2, zip }:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
stdenv.mkDerivation rec{
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
name = "fs-uae-${version}";
|
name = "fs-uae-${version}";
|
||||||
version = "2.4.3";
|
version = "2.8.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
urls = [ "http://fs-uae.net/fs-uae/stable/${version}/${name}.tar.gz" ];
|
url = "http://fs-uae.net/fs-uae/stable/${version}/${name}.tar.gz";
|
||||||
sha256 = "05wngvpqj8kj4wzi5jzzhvs19iljb3m6ba1l2hk4rz68b400ndv6";
|
sha256 = "1cvvlkzhh4rrpax7505bngw990rx86l1nhad174zpqc9ah93il25";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig gettext gtk2 SDL zlib glib openal mesa lua freetype ];
|
buildInputs = [ pkgconfig gettext gtk2 SDL2 zlib glib openal mesa lua freetype libmpeg2 zip ];
|
||||||
|
|
||||||
phases = "unpackPhase buildPhase installPhase";
|
|
||||||
|
|
||||||
# Strange: the docs recommend SDL2, but it does compile only with SDL1
|
|
||||||
buildPhase = "make sdl=1";
|
|
||||||
installPhase = "make install prefix=$out";
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "An accurate, customizable Amiga Emulator";
|
description = "An accurate, customizable Amiga Emulator";
|
||||||
@ -30,9 +24,8 @@ stdenv.mkDerivation rec{
|
|||||||
'';
|
'';
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
homepage = http://fs-uae.net;
|
homepage = http://fs-uae.net;
|
||||||
maintainers = [ maintainers.AndersonTorres ];
|
maintainers = with stdenv.lib; [ maintainers.AndersonTorres ];
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
# TODO: testing and Python GUI support
|
# TODO: testing and Python GUI support
|
||||||
# TODO: SDL2 support
|
|
||||||
|
Loading…
Reference in New Issue
Block a user