nixpkgs/pkgs/applications/emulators/vbam/default.nix
~noodlez1232 41a5669425 vbam: Fix gsettings problems.
Solution inspired by #305611. If VBAm was used on a system without any
gsettings schemas (common on non-GNOME installs), trying to do any sort
of opening of directories or other things that require those schemas
would cause a hang-then-crash situation.
2024-05-11 20:14:23 -07:00

65 lines
1.1 KiB
Nix

{ lib, stdenv
, cairo
, cmake
, fetchFromGitHub
, fetchpatch
, ffmpeg
, gettext
, wxGTK32
, gtk3
, libGLU, libGL
, openal
, pkg-config
, SDL2
, sfml
, zip
, zlib
, wrapGAppsHook3
, gsettings-desktop-schemas
}:
stdenv.mkDerivation rec {
pname = "visualboyadvance-m";
version = "2.1.9";
src = fetchFromGitHub {
owner = "visualboyadvance-m";
repo = "visualboyadvance-m";
rev = "v${version}";
sha256 = "sha256-t5/CM5KXDG0OCByu7mUyuC5NkYmB3BFmEHHgnMY05nE=";
};
nativeBuildInputs = [ cmake pkg-config wrapGAppsHook3 ];
buildInputs = [
cairo
ffmpeg
gettext
libGLU
libGL
openal
SDL2
sfml
zip
zlib
wxGTK32
gtk3
gsettings-desktop-schemas
];
cmakeFlags = [
"-DENABLE_FFMPEG='true'"
"-DENABLE_LINK='true'"
"-DSYSCONFDIR=etc"
"-DENABLE_SDL='true'"
];
meta = with lib; {
description = "A merge of the original Visual Boy Advance forks";
license = licenses.gpl2;
maintainers = with maintainers; [ lassulus netali ];
homepage = "https://vba-m.com/";
platforms = lib.platforms.linux;
mainProgram = "visualboyadvance-m";
};
}