fsuae: 3.0.5 -> 3.1.66
This commit is contained in:
parent
d5dede7ae8
commit
240ed9830f
1 changed files with 47 additions and 14 deletions
|
@ -1,21 +1,56 @@
|
|||
{ lib, stdenv, fetchurl, pkg-config
|
||||
, gettext, gtk2, SDL2, zlib, glib, openal, libGLU, libGL, lua, freetype, libmpeg2, zip }:
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, SDL2
|
||||
, autoreconfHook
|
||||
, freetype
|
||||
, gettext
|
||||
, glib
|
||||
, gtk2
|
||||
, libGL
|
||||
, libGLU
|
||||
, libmpeg2
|
||||
, lua
|
||||
, openal
|
||||
, pkg-config
|
||||
, zip
|
||||
, zlib
|
||||
}:
|
||||
|
||||
|
||||
with lib;
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
pname = "fs-uae";
|
||||
version = "3.0.5";
|
||||
version = "3.1.66";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://fs-uae.net/stable/${version}/${pname}-${version}.tar.gz";
|
||||
sha256 = "1qwzhp34wy7bnd3c0plv11rg9fs5m92rh3ffnr9pn6ng0cpc8vpj";
|
||||
src = fetchFromGitHub {
|
||||
owner = "FrodeSolheim";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-zPVRPazelmNaxcoCStB0j9b9qwQDTgv3O7Bg3VlW9ys=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ gettext gtk2 SDL2 zlib glib openal libGLU libGL lua freetype libmpeg2 zip ];
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
pkg-config
|
||||
];
|
||||
|
||||
meta = {
|
||||
buildInputs = [
|
||||
SDL2
|
||||
freetype
|
||||
gettext
|
||||
glib
|
||||
gtk2
|
||||
libGL
|
||||
libGLU
|
||||
libmpeg2
|
||||
lua
|
||||
openal
|
||||
zip
|
||||
zlib
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://fs-uae.net";
|
||||
description = "An accurate, customizable Amiga Emulator";
|
||||
longDescription = ''
|
||||
FS-UAE integrates the most accurate Amiga emulation code available
|
||||
|
@ -24,9 +59,7 @@ stdenv.mkDerivation rec {
|
|||
create customized Amigas.
|
||||
'';
|
||||
license = licenses.gpl2Plus;
|
||||
homepage = "https://fs-uae.net";
|
||||
maintainers = with lib; [ maintainers.AndersonTorres ];
|
||||
maintainers = with maintainers; [ AndersonTorres ];
|
||||
platforms = [ "i686-linux" "x86_64-linux" ];
|
||||
};
|
||||
}
|
||||
# TODO: testing and Python GUI support
|
||||
|
|
Loading…
Reference in a new issue