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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1.0 KiB
Nix
Raw Normal View History

{ mkDerivation, lib, fetchurl, cmake, pkg-config, qtbase, qt5, libGLU, libGL
, freeglut ? null, openal ? null, SDL2 ? null }:
2015-11-29 02:33:37 +00:00
2020-04-07 20:24:12 +00:00
mkDerivation rec {
pname = "yabause";
version = "0.9.15";
2015-11-29 02:33:37 +00:00
src = fetchurl {
url = "https://download.tuxfamily.org/yabause/releases/${version}/${pname}-${version}.tar.gz";
sha256 = "1cn2rjjb7d9pkr4g5bqz55vd4pzyb7hg94cfmixjkzzkw0zw8d23";
2015-11-29 02:33:37 +00:00
};
2021-01-17 02:30:45 +00:00
nativeBuildInputs = [ cmake pkg-config ];
2019-11-10 16:44:34 +00:00
buildInputs = [ qtbase qt5.qtmultimedia libGLU libGL freeglut openal SDL2 ];
2015-11-29 02:33:37 +00:00
patches = [
./linkage-rwx-linux-elf.patch
# Fixes derived from
# https://github.com/Yabause/yabause/commit/06a816c032c6f7fd79ced6e594dd4b33571a0e73
./0001-Fixes-for-Qt-5.11-upgrade.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 lib; {
2015-11-29 02:33:37 +00:00
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 09:16:44 +00:00
maintainers = with maintainers; [ AndersonTorres ];
2015-11-29 02:33:37 +00:00
platforms = platforms.linux;
};
}