Skip to content

Commit

Permalink
Merge pull request #162355 from Stunkymonkey/qt48Full-appendToName
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 authored Mar 1, 2022
2 parents 06ded44 + 1a2a818 commit 727f5c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkgs/development/libraries/qt-4.x/4.8/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 727f5c4

Please sign in to comment.