File tree 2 files changed +4
-4
lines changed
applications/misc/qsyncthingtray
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ stdenv.mkDerivation rec {
57
57
license = licenses . lgpl3 ;
58
58
maintainers = with maintainers ; [ zraexy peterhoeg ] ;
59
59
platforms = platforms . all ;
60
- # 0.5.7 segfaults when opening the main panel with qt 5.7 but qt 5.8 is OK
61
- broken = builtins . compareVersions qtbase . version "5.7.0" = = 0 ;
60
+ # 0.5.7 segfaults when opening the main panel with qt 5.7 and fails to compile with qt 5.8
61
+ broken = builtins . compareVersions qtbase . version "5.7.0" > = 0 ;
62
62
} ;
63
63
}
Original file line number Diff line number Diff line change @@ -15391,8 +15391,8 @@ with pkgs;
15391
15391
qt = qt4;
15392
15392
};
15393
15393
15394
- # 0.5.7 segfaults when opening the main panel with qt 5.7 but qt 5.8 is OK
15395
- qsyncthingtray = libsForQt5 .callPackage ../applications/misc/qsyncthingtray { };
15394
+ # 0.5.7 segfaults when opening the main panel with qt 5.7 and fails to compile with qt 5.8
15395
+ qsyncthingtray = libsForQt56 .callPackage ../applications/misc/qsyncthingtray { };
15396
15396
15397
15397
qsynth = callPackage ../applications/audio/qsynth { };
15398
15398
You can’t perform that action at this time.
0 commit comments