nixpkgs/pkgs/misc/emulators/yabause/default.nix

34 lines
984 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, pkgconfig, qtbase, mesa
, freeglut ? null, openal ? null, SDL2 ? null }:
2015-11-29 02:33:37 +00:00
stdenv.mkDerivation rec {
name = "yabause-${version}";
# 0.9.15 only works with OpenGL 3.2 or later:
# https://github.com/Yabause/yabause/issues/349
version = "0.9.14";
2015-11-29 02:33:37 +00:00
src = fetchurl {
url = "https://download.tuxfamily.org/yabause/releases/${version}/${name}.tar.gz";
2015-11-29 02:33:37 +00:00
sha256 = "0nkpvnr599g0i2mf19sjvw5m0rrvixdgz2snav4qwvzgfc435rkm";
};
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ qtbase mesa freeglut openal SDL2 ];
2015-11-29 02:33:37 +00:00
patches = [ ./emu-compatibility.com.patch ./linkage-rwx-linux-elf.patch ];
2015-11-29 02:33:37 +00:00
cmakeFlags = [
"-DYAB_NETWORK=ON"
"-DYAB_OPTIMIZED_DMA=ON"
"-DYAB_PORTS=qt"
] ;
2015-11-29 02:33:37 +00:00
meta = with stdenv.lib; {
description = "An open-source Sega Saturn emulator";
homepage = https://yabause.org/;
2015-11-29 02:33:37 +00:00
license = licenses.gpl2Plus;
2017-10-08 10:16:44 +01:00
maintainers = with maintainers; [ AndersonTorres ];
2015-11-29 02:33:37 +00:00
platforms = platforms.linux;
};
}