Merge pull request #162355 from Stunkymonkey/qt48Full-appendToName

This commit is contained in:
Sandro 2022-03-01 18:05:20 +01:00 committed by GitHub
commit 727f5c4d02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@
# false build-time dependencies
stdenv.mkDerivation rec {
pname = "qt";
pname = "qt" + lib.optionalString ( docs && demos && examples && developerBuild ) "-full";
version = "4.8.7";
src = fetchurl {

View File

@ -19653,12 +19653,12 @@ with pkgs;
qmake4Hook = qmake48Hook;
qt48Full = appendToName "full" (qt48.override {
qt48Full = qt48.override {
docs = true;
demos = true;
examples = true;
developerBuild = true;
});
};
qt512 = recurseIntoAttrs (makeOverridable
(import ../development/libraries/qt-5/5.12) {