1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

radiotray-ng: migrate to wxGTK32

This commit is contained in:
Weijia Wang 2023-03-15 17:26:49 +02:00
parent c817b58614
commit bc26a2789d
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

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