summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5
diff options
context:
space:
mode:
authorSamuel Dionne-Riel <samuel@dionne-riel.com>2019-07-28 16:18:44 -0400
committerSamuel Dionne-Riel <samuel@dionne-riel.com>2019-07-30 20:33:22 -0400
commit6cb99e79ed3657d15e383f67dcb9af227d641c89 (patch)
treebf02dbb1d15622704aeed6f64436c5e2e59193ff /pkgs/development/libraries/qt-5
parent4d0bff9f317d81d996b3caae563962cb7efb6236 (diff)
downloadnixpkgs-6cb99e79ed3657d15e383f67dcb9af227d641c89.tar
nixpkgs-6cb99e79ed3657d15e383f67dcb9af227d641c89.tar.gz
nixpkgs-6cb99e79ed3657d15e383f67dcb9af227d641c89.tar.bz2
nixpkgs-6cb99e79ed3657d15e383f67dcb9af227d641c89.tar.lz
nixpkgs-6cb99e79ed3657d15e383f67dcb9af227d641c89.tar.xz
nixpkgs-6cb99e79ed3657d15e383f67dcb9af227d641c89.tar.zst
nixpkgs-6cb99e79ed3657d15e383f67dcb9af227d641c89.zip
qt512: Enforce strict compatible version paths
Diffstat (limited to 'pkgs/development/libraries/qt-5')
-rw-r--r--pkgs/development/libraries/qt-5/5.12/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/development/libraries/qt-5/5.12/default.nix b/pkgs/development/libraries/qt-5/5.12/default.nix
index 186e154597f..7b4addd9161 100644
--- a/pkgs/development/libraries/qt-5/5.12/default.nix
+++ b/pkgs/development/libraries/qt-5/5.12/default.nix
@@ -9,9 +9,8 @@ top-level attribute to `top-level/all-packages.nix`.
 1. Update the URL in `pkgs/development/libraries/qt-5/$VERSION/fetch.sh`.
 2. From the top of the Nixpkgs tree, run
    `./maintainers/scripts/fetch-kde-qt.sh > pkgs/development/libraries/qt-5/$VERSION/srcs.nix`.
-3. Update `qtCompatVersion` below if the minor version number changes.
-4. Check that the new packages build correctly.
-5. Commit the changes and open a pull request.
+3. Check that the new packages build correctly.
+4. Commit the changes and open a pull request.
 
 */
 
@@ -32,7 +31,7 @@ with stdenv.lib;
 
 let
 
-  qtCompatVersion = "5.12";
+  qtCompatVersion = srcs.qtbase.version;
 
   stdenvActual = if stdenv.cc.isClang then llvmPackages_5.stdenv else stdenv;