summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/emulators/pcem
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2022-10-08 23:30:03 +0200
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2022-10-08 23:30:03 +0200
commit7e959388cddd24a46cbeff8e62214bb79248e76a (patch)
tree7aba8888ae326eac4eb3344f2cf7faabc491f18e /pkgs/applications/emulators/pcem
parenta989aa4619162ff37bcbb8c2fb1e502658647fb2 (diff)
pcem: migrate to wxGTK32
Diffstat (limited to 'pkgs/applications/emulators/pcem')
-rw-r--r--pkgs/applications/emulators/pcem/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/emulators/pcem/default.nix b/pkgs/applications/emulators/pcem/default.nix
index 2e6aa683e4d3..22173fe9e085 100644
--- a/pkgs/applications/emulators/pcem/default.nix
+++ b/pkgs/applications/emulators/pcem/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchzip, wxGTK31, coreutils, SDL2, openal, alsa-lib, pkg-config
+{ stdenv, lib, fetchzip, wxGTK32, coreutils, SDL2, openal, alsa-lib, pkg-config
, autoreconfHook, withNetworking ? true, withALSA ? true }:
stdenv.mkDerivation rec {
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
- buildInputs = [ wxGTK31 coreutils SDL2 openal ]
+ buildInputs = [ wxGTK32 coreutils SDL2 openal ]
++ lib.optional withALSA alsa-lib;
configureFlags = [ "--enable-release-build" ]