Merge pull request #221335 from wegank/radiotray-ng-wxgtk

radiotray-ng: migrate to wxGTK32
This commit is contained in:
Weijia Wang 2023-03-16 08:31:29 +02:00 committed by GitHub
commit 487bb8577b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -80,6 +80,9 @@ stdenv.mkDerivation rec {
"-DBUILD_TESTS=${if doCheck then "ON" else "OFF"}"
];
# 'wxFont::wxFont(int, int, int, int, bool, const wxString&, wxFontEncoding)' is deprecated
env.NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations";
nativeCheckInputs = [ gtest ];
doCheck = !stdenv.isAarch64; # single failure that I can't explain

View File

@ -32979,7 +32979,7 @@ with pkgs;
radioboat = callPackage ../applications/audio/radioboat { };
radiotray-ng = callPackage ../applications/audio/radiotray-ng {
wxGTK = wxGTK30;
wxGTK = wxGTK32;
};
raiseorlaunch = callPackage ../applications/misc/raiseorlaunch { };