summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/qt-6/qt-env.nix
blob: 113e57e3588bbd785370be99ec39bf956262eafb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ buildEnv, qtbase }:
name: paths:

buildEnv {
  inherit name;
  paths = [ qtbase ] ++ paths;

  pathsToLink = [
    "/metatypes"
    "/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
  '';
}