qt6.qttools: symlink bin to dev output

There are several reference to "${qttools.dev}/bin" treewide, adding the
symlink to fix compatibility with these packages.
This commit is contained in:
Nick Cao 2023-04-13 23:27:03 +08:00
parent e5ba8e7113
commit 0bad2288a7
No known key found for this signature in database

View File

@ -41,4 +41,8 @@ qtModule {
"bin/macdeployqt"
];
postInstall = ''
mkdir -p "$dev"
ln -s "$out/bin" "$dev/bin"
'';
}