From ad38cdac8ab9526d9eb15edcf5cb005103a9fef0 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 17 Nov 2014 18:54:31 -0600 Subject: [PATCH] qt: upgrade to 5.3.2 This commit also removes the 5.2 branch in favor of 5.3. Several components of KDE5 require Qt 5.3, so it doesn't make much sense to have the rest of the system on an older version. Also, the application styles may not be compatible because Qt breaks ABI compatibility between versions. --- .../misc/cool-old-term/default.nix | 6 +- pkgs/development/libraries/qt-5/default.nix | 11 +- .../qt-5/qt-5.2-dlopen-absolute-paths.patch | 36 ---- pkgs/development/libraries/qt-5/qt-5.3.nix | 165 ------------------ pkgs/top-level/all-packages.nix | 15 -- 5 files changed, 8 insertions(+), 225 deletions(-) delete mode 100644 pkgs/development/libraries/qt-5/qt-5.2-dlopen-absolute-paths.patch delete mode 100644 pkgs/development/libraries/qt-5/qt-5.3.nix diff --git a/pkgs/applications/misc/cool-old-term/default.nix b/pkgs/applications/misc/cool-old-term/default.nix index 76d78f004024..c56393a1be83 100644 --- a/pkgs/applications/misc/cool-old-term/default.nix +++ b/pkgs/applications/misc/cool-old-term/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, qt53 }: +{ stdenv, fetchFromGitHub, qt5 }: stdenv.mkDerivation rec { version = "0.9"; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { sha256 = "8462f3eded7b2219acc143258544b0dfac32d81e10cac61ff14276d426704c93"; }; - buildInputs = [ qt53 ]; + buildInputs = [ qt5 ]; buildPhase = '' pushd ./konsole-qml-plugin @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { cat > $out/bin/cool-old-term <