Skip to content

Commit e256655

Browse files
committedMay 12, 2017
qsyncthingtray: build with qt 5.6
1 parent 4f51a1e commit e256655

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎pkgs/applications/misc/qsyncthingtray/default.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ stdenv.mkDerivation rec {
5757
license = licenses.lgpl3;
5858
maintainers = with maintainers; [ zraexy peterhoeg ];
5959
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;
6262
};
6363
}

‎pkgs/top-level/all-packages.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -15391,8 +15391,8 @@ with pkgs;
1539115391
qt = qt4;
1539215392
};
1539315393

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 { };
1539615396

1539715397
qsynth = callPackage ../applications/audio/qsynth { };
1539815398

0 commit comments

Comments
 (0)
Please sign in to comment.