nixpkgs/pkgs/development/libraries/qt-6/qt-env.nix
2023-06-26 20:05:02 +03:00

23 lines
493 B
Nix

{ buildEnv, qtbase }: name: paths:
buildEnv {
inherit name;
paths = [ qtbase ] ++ paths;
pathsToLink = [ "/bin" "/mkspecs" "/include" "/lib" "/share" "/libexec" ];
extraOutputsToInstall = [ "out" "dev" ];
postBuild = ''
for f in qmake qmake6; do
rm "$out/bin/$f"
cp "${qtbase}/bin/$f" "$out/bin"
done
cat >"$out/bin/qt.conf" <<EOF
[Paths]
Prefix = $out
Plugins = ${qtbase.qtPluginPrefix}
Qml2Imports = ${qtbase.qtQmlPrefix}
EOF
'';
}