Merge pull request #195136 from wegank/pcem-wxgtk

pcem: migrate to wxGTK32
This commit is contained in:
Anderson Torres 2022-10-09 08:37:26 -03:00 committed by GitHub
commit 77f47938c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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" ]