Skip to content

Commit

Permalink
qt4: Override broken installPhase on Darwin
Browse files Browse the repository at this point in the history
(cherry picked from commit 0aa6d90)
  • Loading branch information
Luke Adams authored and LnL7 committed Oct 11, 2017
1 parent 57a1ef3 commit 5f3eed4
Showing 1 changed file with 31 additions and 3 deletions.
34 changes: 31 additions & 3 deletions pkgs/development/libraries/qt-4.x/4.8/default.nix
Expand Up @@ -183,10 +183,38 @@ stdenv.mkDerivation rec {
sed -i 's/^\(LIBS[[:space:]]*=.*$\)/\1 -lobjc/' ./src/corelib/Makefile.Release
'';

postInstall =
''
installPhase = optionalString stdenv.isDarwin ''
runHook preInstall
cp -r lib $out
mkdir -p $out/Applications
mv bin/*.app $out/Applications
rm -rf bin/*.app
cp -r bin $out
mkdir -p $out/share/doc/${name}
mkdir -p $out/lib
mkdir -p $out/lib/qt4/plugins
mkdir -p $out/lib/qt4/imports
mkdir -p $out/bin
mkdir -p $out/include
mkdir -p $out/share/${name}
cp -r mkspecs $out/share/${name}
cp -r translations $out/share/${name}
cp -r tools/linguist/phrasebooks $out/share/${name}
cp tools/porting/src/q3porting.xml $out/share/${name}
cp -r plugins $out/lib/qt4
cp -r imports $out/lib/qt4
cp -r doc/* $out/share/doc/${name}
runHook postInstall
'';

postInstall = optionalString (!stdenv.isDarwin) ''
rm -rf $out/tests
'';
'';

crossAttrs = {
# I've not tried any case other than i686-pc-mingw32.
Expand Down

0 comments on commit 5f3eed4

Please sign in to comment.