gzdoom: fix IWAD selection menu
This commit is contained in:
parent
3e117af149
commit
128f745fff
1 changed files with 9 additions and 6 deletions
|
@ -1,6 +1,6 @@
|
|||
{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake, makeWrapper, openal, fluidsynth
|
||||
, soundfont-fluid, libGL, SDL2, bzip2, zlib, libjpeg, libsndfile, libvpx, mpg123
|
||||
, game-music-emu, pkg-config, copyDesktopItems, makeDesktopItem }:
|
||||
, game-music-emu, pkg-config, copyDesktopItems, makeDesktopItem, gtk3 }:
|
||||
|
||||
let
|
||||
zmusic = stdenv.mkDerivation rec {
|
||||
|
@ -43,16 +43,17 @@ let
|
|||
nativeBuildInputs = [ cmake makeWrapper pkg-config copyDesktopItems ];
|
||||
buildInputs = [
|
||||
SDL2
|
||||
libGL
|
||||
openal
|
||||
fluidsynth
|
||||
bzip2
|
||||
zlib
|
||||
fluidsynth
|
||||
game-music-emu
|
||||
gtk3
|
||||
libGL
|
||||
libjpeg
|
||||
libsndfile
|
||||
libvpx
|
||||
mpg123
|
||||
game-music-emu
|
||||
openal
|
||||
zlib
|
||||
zmusic
|
||||
];
|
||||
|
||||
|
@ -65,6 +66,8 @@ let
|
|||
|
||||
NIX_CFLAGS_LINK = "-lopenal -lfluidsynth";
|
||||
|
||||
cmakeFlags = [ "-DDYN_GTK=OFF" ];
|
||||
|
||||
desktopItems = [
|
||||
(makeDesktopItem {
|
||||
name = "gzdoom";
|
||||
|
|
Loading…
Reference in a new issue