qt511: Enforce strict compatible version paths
This commit is contained in:
parent
fb96e450b4
commit
4d0bff9f31
1 changed files with 3 additions and 4 deletions
|
@ -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`.
|
1. Update the URL in `pkgs/development/libraries/qt-5/$VERSION/fetch.sh`.
|
||||||
2. From the top of the Nixpkgs tree, run
|
2. From the top of the Nixpkgs tree, run
|
||||||
`./maintainers/scripts/fetch-kde-qt.sh > pkgs/development/libraries/qt-5/$VERSION/srcs.nix`.
|
`./maintainers/scripts/fetch-kde-qt.sh > pkgs/development/libraries/qt-5/$VERSION/srcs.nix`.
|
||||||
3. Update `qtCompatVersion` below if the minor version number changes.
|
3. Check that the new packages build correctly.
|
||||||
4. Check that the new packages build correctly.
|
4. Commit the changes and open a pull request.
|
||||||
5. Commit the changes and open a pull request.
|
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -32,7 +31,7 @@ with stdenv.lib;
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
qtCompatVersion = "5.11";
|
qtCompatVersion = srcs.qtbase.version;
|
||||||
|
|
||||||
stdenvActual = if stdenv.cc.isClang then llvmPackages_5.stdenv else stdenv;
|
stdenvActual = if stdenv.cc.isClang then llvmPackages_5.stdenv else stdenv;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue