mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-23 20:44:12 +00:00
qt5: Fix qt5X.full
Use dev outputs explicitly since they aren't the first output since the recent changes.
This commit is contained in:
parent
2ae5fb2723
commit
c5e9049ac3
@ -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"
|
mkdir -p "$out/bin" "$out/mkspecs" "$out/include" "$out/lib" "$out/share"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user