summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5/qt-env.nix
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2021-03-23 13:29:46 -0700
committerDylan Baker <dylan@pnwbakers.com>2021-03-23 13:37:20 -0700
commit5cd983f6d31643d5494aec9be04d352e056c50c3 (patch)
tree7aba97959e9f58b4aa92191d96fe82248b80c842 /pkgs/development/libraries/qt-5/qt-env.nix
parente0e241c2199b4e536ea5450f3b0bf9285cc087a2 (diff)
qt5: Include the "out" derivation as well as the "dev" in qt5.full
Without a number of important Qt libraries (all of those with a "dev"
derivation) are not included in the bundled package, and qmake can't
find them.

Fixes #110199
Diffstat (limited to 'pkgs/development/libraries/qt-5/qt-env.nix')
-rw-r--r--pkgs/development/libraries/qt-5/qt-env.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/qt-5/qt-env.nix b/pkgs/development/libraries/qt-5/qt-env.nix
index da56c07779b9c..b4a201c08cc4a 100644
--- a/pkgs/development/libraries/qt-5/qt-env.nix
+++ b/pkgs/development/libraries/qt-5/qt-env.nix
@@ -5,7 +5,7 @@ buildEnv {
   paths = [ qtbase ] ++ paths;
 
   pathsToLink = [ "/bin" "/mkspecs" "/include" "/lib" "/share" ];
-  extraOutputsToInstall = [ "dev" ];
+  extraOutputsToInstall = [ "out" "dev" ];
 
   postBuild = ''
     rm "$out/bin/qmake"