From c5e9049ac30948529114f3495d0145d3ac2689de Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Tue, 6 Sep 2016 22:28:33 +0300 Subject: [PATCH] qt5: Fix qt5X.full Use dev outputs explicitly since they aren't the first output since the recent changes. --- pkgs/development/libraries/qt-5/qt-env.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/qt-5/qt-env.nix b/pkgs/development/libraries/qt-5/qt-env.nix index 11c6ac74d5f..b2b7121d51d 100644 --- a/pkgs/development/libraries/qt-5/qt-env.nix +++ b/pkgs/development/libraries/qt-5/qt-env.nix @@ -1,6 +1,6 @@ -{ runCommand, lndir, qtbase }: name: paths: +{ lib, runCommand, lndir, qtbase }: name: paths: -runCommand name { inherit paths qtbase; } '' +runCommand name { qtbase = qtbase.dev; paths = lib.chooseDevOutputs paths; } '' mkdir -p "$out/bin" "$out/mkspecs" "$out/include" "$out/lib" "$out/share"