anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / development / libraries / qt-6 / qt-env.nix
blobc754c75cc2763b143810ca7859342db9d93d9358
1 { buildEnv, qtbase }: name: paths:
3 buildEnv {
4   inherit name;
5   paths = [ qtbase ] ++ paths;
7   pathsToLink = [ "/metatypes" "/bin" "/mkspecs" "/include" "/lib" "/share" "/libexec" ];
8   extraOutputsToInstall = [ "out" "dev" ];
10   postBuild = ''
11     for f in qmake qmake6; do
12       rm "$out/bin/$f"
13       cp "${qtbase}/bin/$f" "$out/bin"
14     done
15     cat >"$out/bin/qt.conf" <<EOF
16     [Paths]
17     Prefix = $out
18     Plugins = ${qtbase.qtPluginPrefix}
19     Qml2Imports = ${qtbase.qtQmlPrefix}
20     EOF
21   '';