Skip to content

Commit

Permalink
Merge pull request #23602 from periklis/topic_qt57_darwin
Browse files Browse the repository at this point in the history
qt57: darwin compatibility
  • Loading branch information
Thomas Tuegel committed Mar 10, 2017
2 parents 943c4ed + c663f6a commit 4c0737e
Show file tree
Hide file tree
Showing 4 changed files with 479 additions and 37 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/libraries/qt-5/5.7/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -107,12 +107,12 @@ let
makeQtWrapper =
makeSetupHook
{ deps = [ makeWrapper ]; }
../make-qt-wrapper.sh;
(if stdenv.isDarwin then ../make-qt-wrapper-darwin.sh else ../make-qt-wrapper.sh);

qmakeHook =
makeSetupHook
{ deps = [ self.qtbase.dev ]; }
../qmake-hook.sh;
(if stdenv.isDarwin then ../qmake-hook-darwin.sh else ../qmake-hook.sh);

};

Expand Down

0 comments on commit 4c0737e

Please sign in to comment.