mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
Add qtEnv
This commit is contained in:
parent
da6b369029
commit
b873f5bd62
2 changed files with 33 additions and 0 deletions
31
pkgs/development/libraries/qt-5/qt-env.nix
Normal file
31
pkgs/development/libraries/qt-5/qt-env.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ runCommand, lndir }:
|
||||
|
||||
{ paths, qtbase }:
|
||||
|
||||
runCommand "qt-env" { inherit paths qtbase; } ''
|
||||
|
||||
mkdir -p "$out/bin" "$out/mkspecs" "$out/include" "$out/lib" "$out/share"
|
||||
|
||||
cp "$qtbase/bin/qmake" "$out/bin"
|
||||
cat >"$out/bin/qt.conf" <<EOF
|
||||
[Paths]
|
||||
Prefix = $out
|
||||
Plugins = lib/qt5/plugins
|
||||
Imports = lib/qt5/imports
|
||||
Qml2Imports = lib/qt5/qml
|
||||
Documentation = share/doc/qt5
|
||||
EOF
|
||||
|
||||
for path in $paths; do
|
||||
if [[ -d "$path/mkspecs" ]]; then
|
||||
${lndir}/bin/lndir -silent "$path/mkspecs" "$out/mkspecs"
|
||||
|
||||
for dir in bin include lib share; do
|
||||
if [[ -d "$path/$dir" ]]; then
|
||||
${lndir}/bin/lndir -silent "$path/$dir" "$out/$dir"
|
||||
fi
|
||||
done
|
||||
fi
|
||||
done
|
||||
|
||||
''
|
|
@ -7999,6 +7999,8 @@ let
|
|||
buildExamples = true;
|
||||
buildTests = true;
|
||||
developerBuild = true;
|
||||
qtEnv = callPackage ../development/libraries/qt-5/qt-env.nix {};
|
||||
|
||||
});
|
||||
|
||||
qt5SDK = qtcreator.override {
|
||||
|
|
Loading…
Reference in a new issue