about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2022-10-09 08:37:26 -0300
committerGitHub <noreply@github.com>2022-10-09 08:37:26 -0300
commit77f47938c81ae443ca302c38a26df4a4334ccfb6 (patch)
tree91988bf4a8e275b2070a0e6bd8a30138605b1974 /pkgs/applications
parent46101630c6d700419dab84923ac7b2d2d6e6d877 (diff)
parent7e959388cddd24a46cbeff8e62214bb79248e76a (diff)
Merge pull request #195136 from wegank/pcem-wxgtk
pcem: migrate to wxGTK32
Diffstat (limited to 'pkgs/applications')
-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 2e6aa683e4d3a..22173fe9e0853 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" ]