2017-02-28 15:37:57 +00:00
|
|
|
{
|
|
|
|
stdenv, lib, copyPathsToStore,
|
2017-05-15 12:44:33 +01:00
|
|
|
src, version, qtCompatVersion,
|
2017-02-28 15:37:57 +00:00
|
|
|
|
|
|
|
coreutils, bison, flex, gdb, gperf, lndir, patchelf, perl, pkgconfig, python2,
|
|
|
|
ruby,
|
2017-03-20 21:09:55 +00:00
|
|
|
# darwin support
|
|
|
|
darwin, libiconv, libcxx,
|
2017-02-28 15:37:57 +00:00
|
|
|
|
2017-05-18 14:01:54 +01:00
|
|
|
dbus, dconf, fontconfig, freetype, glib, gtk3, harfbuzz, icu, libX11, libXcomposite,
|
2017-02-28 15:37:57 +00:00
|
|
|
libXcursor, libXext, libXi, libXrender, libinput, libjpeg, libpng, libtiff,
|
|
|
|
libxcb, libxkbcommon, libxml2, libxslt, openssl, pcre16, sqlite, udev,
|
|
|
|
xcbutil, xcbutilimage, xcbutilkeysyms, xcbutilrenderutil, xcbutilwm, xlibs,
|
|
|
|
zlib,
|
|
|
|
|
|
|
|
# optional dependencies
|
|
|
|
cups ? null, mysql ? null, postgresql ? null,
|
|
|
|
|
|
|
|
# options
|
2017-03-20 21:09:55 +00:00
|
|
|
mesaSupported ? (!stdenv.isDarwin),
|
|
|
|
mesa,
|
2017-02-28 15:37:57 +00:00
|
|
|
buildExamples ? false,
|
|
|
|
buildTests ? false,
|
|
|
|
developerBuild ? false,
|
|
|
|
decryptSslTraffic ? false
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
system-x86_64 = lib.elem stdenv.system lib.platforms.x86_64;
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
|
|
|
|
name = "qtbase-${version}";
|
2017-05-15 12:44:33 +01:00
|
|
|
inherit qtCompatVersion src version;
|
2017-02-28 15:37:57 +00:00
|
|
|
|
2017-04-25 13:12:11 +01:00
|
|
|
propagatedBuildInputs =
|
|
|
|
[
|
|
|
|
libxml2 libxslt openssl pcre16 sqlite zlib
|
|
|
|
|
|
|
|
# Text rendering
|
|
|
|
harfbuzz icu
|
|
|
|
|
|
|
|
# Image formats
|
|
|
|
libjpeg libpng libtiff
|
|
|
|
]
|
|
|
|
|
|
|
|
++ lib.optional mesaSupported mesa
|
|
|
|
|
|
|
|
++ lib.optionals (!stdenv.isDarwin) [
|
|
|
|
dbus glib udev
|
|
|
|
|
|
|
|
# Text rendering
|
|
|
|
fontconfig freetype
|
|
|
|
|
|
|
|
# X11 libs
|
|
|
|
libX11 libXcomposite libXext libXi libXrender libxcb libxkbcommon xcbutil
|
|
|
|
xcbutilimage xcbutilkeysyms xcbutilrenderutil xcbutilwm
|
|
|
|
]
|
|
|
|
|
|
|
|
++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
|
|
|
AGL AppKit ApplicationServices Carbon Cocoa
|
|
|
|
CoreAudio CoreBluetooth CoreLocation CoreServices
|
|
|
|
DiskArbitration Foundation OpenGL
|
2017-05-13 22:14:43 +01:00
|
|
|
darwin.cf-private darwin.libobjc libiconv
|
2017-04-25 13:12:11 +01:00
|
|
|
]);
|
|
|
|
|
|
|
|
buildInputs = [ ]
|
|
|
|
++ lib.optionals (!stdenv.isDarwin) [ gtk3 libinput ]
|
|
|
|
++ lib.optional developerBuild gdb
|
|
|
|
++ lib.optional (cups != null) cups
|
|
|
|
++ lib.optional (mysql != null) mysql.lib
|
|
|
|
++ lib.optional (postgresql != null) postgresql;
|
|
|
|
|
|
|
|
nativeBuildInputs =
|
|
|
|
[ bison flex gperf lndir perl pkgconfig python2 ]
|
|
|
|
++ lib.optional (!stdenv.isDarwin) patchelf;
|
|
|
|
|
2017-02-28 15:37:57 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
|
|
|
patches =
|
2017-04-17 14:04:19 +01:00
|
|
|
copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
2017-02-28 15:37:57 +00:00
|
|
|
|
|
|
|
postPatch =
|
|
|
|
''
|
|
|
|
substituteInPlace configure --replace /bin/pwd pwd
|
|
|
|
substituteInPlace src/corelib/global/global.pri --replace /bin/ls ${coreutils}/bin/ls
|
|
|
|
sed -e 's@/\(usr\|opt\)/@/var/empty/@g' -i config.tests/*/*.test -i mkspecs/*/*.conf
|
|
|
|
|
2017-04-16 15:58:55 +01:00
|
|
|
sed -i '/PATHS.*NO_DEFAULT_PATH/ d' src/corelib/Qt5Config.cmake.in
|
|
|
|
sed -i '/PATHS.*NO_DEFAULT_PATH/ d' src/corelib/Qt5CoreMacros.cmake
|
|
|
|
sed -i 's/NO_DEFAULT_PATH//' src/gui/Qt5GuiConfigExtras.cmake.in
|
|
|
|
sed -i '/PATHS.*NO_DEFAULT_PATH/ d' mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in
|
2017-02-28 15:37:57 +00:00
|
|
|
''
|
2017-04-16 15:58:27 +01:00
|
|
|
|
2017-02-28 15:37:57 +00:00
|
|
|
+ lib.optionalString mesaSupported ''
|
2017-04-16 15:58:27 +01:00
|
|
|
sed -i mkspecs/common/linux.conf \
|
|
|
|
-e "/^QMAKE_INCDIR_OPENGL/ s|$|${mesa.dev or mesa}/include|" \
|
|
|
|
-e "/^QMAKE_LIBDIR_OPENGL/ s|$|${mesa.out}/lib|"
|
|
|
|
''
|
|
|
|
|
|
|
|
+ lib.optionalString stdenv.isDarwin ''
|
2017-03-20 21:09:55 +00:00
|
|
|
sed -i \
|
|
|
|
-e 's|! /usr/bin/xcode-select --print-path >/dev/null 2>&1;|false;|' \
|
|
|
|
-e 's|! /usr/bin/xcrun -find xcodebuild >/dev/null 2>&1;|false;|' \
|
2017-04-07 02:00:28 +01:00
|
|
|
-e 's|sysroot=$(/usr/bin/xcodebuild -sdk $sdk -version Path 2>/dev/null)|sysroot=/nonsense|' \
|
2017-03-20 21:09:55 +00:00
|
|
|
-e 's|QMAKE_CONF_COMPILER=`getXQMakeConf QMAKE_CXX`|QMAKE_CXX="clang++"\nQMAKE_CONF_COMPILER="clang++"|' \
|
|
|
|
-e 's|XCRUN=`/usr/bin/xcrun -sdk macosx clang -v 2>&1`|XCRUN="clang -v 2>&1"|' \
|
|
|
|
-e 's#sdk_val=$(/usr/bin/xcrun -sdk $sdk -find $(echo $val | cut -d \x27 \x27 -f 1))##' \
|
|
|
|
-e 's#val=$(echo $sdk_val $(echo $val | cut -s -d \x27 \x27 -f 2-))##' \
|
|
|
|
./configure
|
|
|
|
sed -i '3,$d' ./mkspecs/features/mac/default_pre.prf
|
|
|
|
sed -i '26,$d' ./mkspecs/features/mac/default_post.prf
|
|
|
|
sed -i '1,$d' ./mkspecs/features/mac/sdk.prf
|
|
|
|
sed -i 's/QMAKE_LFLAGS_RPATH = -Wl,-rpath,/QMAKE_LFLAGS_RPATH =/' ./mkspecs/common/mac.conf
|
|
|
|
'';
|
|
|
|
# Note on the above: \x27 is a way if including a single-quote
|
|
|
|
# character in the sed string arguments.
|
2017-02-28 15:37:57 +00:00
|
|
|
|
2017-05-15 12:44:33 +01:00
|
|
|
qtPluginPrefix = "lib/qt-${qtCompatVersion}/plugins";
|
|
|
|
qtQmlPrefix = "lib/qt-${qtCompatVersion}/qml";
|
|
|
|
qtDocPrefix = "share/doc/qt-${qtCompatVersion}";
|
|
|
|
|
2017-02-28 15:37:57 +00:00
|
|
|
setOutputFlags = false;
|
|
|
|
preConfigure = ''
|
|
|
|
export LD_LIBRARY_PATH="$PWD/lib:$PWD/plugins/platforms:$LD_LIBRARY_PATH"
|
|
|
|
export MAKEFLAGS=-j$NIX_BUILD_CORES
|
|
|
|
|
|
|
|
configureFlags+="\
|
2017-05-15 12:44:33 +01:00
|
|
|
-plugindir $out/$qtPluginPrefix \
|
|
|
|
-qmldir $out/$qtQmlPrefix \
|
|
|
|
-docdir $out/$qtDocPrefix"
|
2017-04-15 17:12:11 +01:00
|
|
|
|
2017-05-15 12:44:33 +01:00
|
|
|
NIX_CFLAGS_COMPILE+=" -DNIXPKGS_QT_PLUGIN_PREFIX=\"$qtPluginPrefix\""
|
|
|
|
NIX_CFLAGS_COMPILE+=" -DNIXPKGS_QPA_PLATFORM_PLUGIN_PATH=\"''${!outputLib}/$qtPluginPrefix/platforms\""
|
2017-02-28 15:37:57 +00:00
|
|
|
'';
|
|
|
|
|
2017-04-25 13:12:11 +01:00
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE =
|
|
|
|
[
|
|
|
|
"-Wno-error=sign-compare" # freetype-2.5.4 changed signedness of some struct fields
|
|
|
|
''-DNIXPKGS_QTCOMPOSE="${libX11.out}/share/X11/locale"''
|
|
|
|
''-DNIXPKGS_LIBRESOLV="${stdenv.cc.libc.out}/lib/libresolv"''
|
|
|
|
''-DNIXPKGS_LIBXCURSOR="${libXcursor.out}/lib/libXcursor"''
|
|
|
|
]
|
|
|
|
|
|
|
|
++ lib.optional mesaSupported
|
|
|
|
''-DNIXPKGS_MESA_GL="${mesa.out}/lib/libGL"''
|
|
|
|
|
2017-05-18 14:01:54 +01:00
|
|
|
++ lib.optionals (!stdenv.isDarwin)
|
|
|
|
[
|
|
|
|
''-DNIXPKGS_QGTK3_XDG_DATA_DIRS="${gtk3}/share/gsettings-schemas/${gtk3.name}"''
|
|
|
|
''-DNIXPKGS_QGTK3_GIO_EXTRA_MODULES="${dconf.lib}/lib/gio/modules"''
|
|
|
|
]
|
|
|
|
|
2017-04-25 13:12:11 +01:00
|
|
|
++ lib.optionals stdenv.isDarwin
|
|
|
|
[
|
|
|
|
"-D__MAC_OS_X_VERSION_MAX_ALLOWED=1090"
|
|
|
|
"-D__AVAILABILITY_INTERNAL__MAC_10_10=__attribute__((availability(macosx,introduced=10.10)))"
|
|
|
|
# Note that nixpkgs's objc4 is from macOS 10.11 while the SDK is
|
|
|
|
# 10.9 which necessitates the above macro definition that mentions
|
|
|
|
# 10.10
|
|
|
|
]
|
|
|
|
|
|
|
|
++ lib.optional decryptSslTraffic "-DQT_DECRYPT_SSL_TRAFFIC";
|
|
|
|
|
2017-02-28 15:37:57 +00:00
|
|
|
prefixKey = "-prefix ";
|
|
|
|
|
2017-04-25 13:12:11 +01:00
|
|
|
# PostgreSQL autodetection fails sporadically because Qt omits the "-lpq" flag
|
|
|
|
# if dependency paths contain the string "pq", which can occur in the hash.
|
|
|
|
# To prevent these failures, we need to override PostgreSQL detection.
|
|
|
|
PSQL_LIBS = lib.optionalString (postgresql != null) "-L${postgresql.lib}/lib -lpq";
|
|
|
|
|
2017-02-28 15:37:57 +00:00
|
|
|
# -no-eglfs, -no-directfb, -no-linuxfb and -no-kms because of the current minimalist mesa
|
|
|
|
# TODO Remove obsolete and useless flags once the build will be totally mastered
|
2017-04-16 18:31:05 +01:00
|
|
|
configureFlags =
|
|
|
|
[
|
|
|
|
"-verbose"
|
|
|
|
"-confirm-license"
|
|
|
|
"-opensource"
|
|
|
|
|
|
|
|
"-release"
|
|
|
|
"-shared"
|
|
|
|
"-accessibility"
|
|
|
|
"-optimized-qmake"
|
|
|
|
"-strip"
|
|
|
|
"-system-proxies"
|
|
|
|
"-pkg-config"
|
|
|
|
]
|
2017-04-23 23:52:48 +01:00
|
|
|
++ lib.optionals developerBuild [
|
|
|
|
"-developer-build"
|
|
|
|
"-no-warnings-are-errors"
|
|
|
|
]
|
2017-04-16 18:31:05 +01:00
|
|
|
++ [
|
|
|
|
"-gui"
|
|
|
|
"-widgets"
|
|
|
|
"-opengl desktop"
|
|
|
|
"-qml-debug"
|
|
|
|
"-icu"
|
|
|
|
"-pch"
|
|
|
|
]
|
|
|
|
|
|
|
|
++ [
|
|
|
|
''${lib.optionalString (!system-x86_64) "-no"}-sse2''
|
|
|
|
"-no-sse3"
|
|
|
|
"-no-ssse3"
|
|
|
|
"-no-sse4.1"
|
|
|
|
"-no-sse4.2"
|
|
|
|
"-no-avx"
|
|
|
|
"-no-avx2"
|
|
|
|
"-no-mips_dsp"
|
|
|
|
"-no-mips_dspr2"
|
|
|
|
]
|
|
|
|
|
|
|
|
++ [
|
|
|
|
"-system-zlib"
|
|
|
|
"-system-libjpeg"
|
|
|
|
"-system-harfbuzz"
|
|
|
|
"-system-pcre"
|
|
|
|
"-openssl-linked"
|
|
|
|
"-system-sqlite"
|
|
|
|
''-${if mysql != null then "plugin" else "no"}-sql-mysql''
|
|
|
|
''-${if postgresql != null then "plugin" else "no"}-sql-psql''
|
|
|
|
|
|
|
|
"-make libs"
|
|
|
|
"-make tools"
|
|
|
|
''-${lib.optionalString (buildExamples == false) "no"}make examples''
|
|
|
|
''-${lib.optionalString (buildTests == false) "no"}make tests''
|
|
|
|
"-v"
|
|
|
|
]
|
|
|
|
|
|
|
|
++ lib.optionals (!stdenv.isDarwin) [
|
|
|
|
"-rpath"
|
2017-04-17 14:02:48 +01:00
|
|
|
|
|
|
|
"-system-xcb"
|
2017-04-16 18:31:05 +01:00
|
|
|
"-xcb"
|
|
|
|
"-qpa xcb"
|
2017-04-17 14:02:48 +01:00
|
|
|
|
|
|
|
"-system-xkbcommon"
|
|
|
|
"-libinput"
|
|
|
|
"-xkbcommon-evdev"
|
2017-04-16 18:31:05 +01:00
|
|
|
|
|
|
|
"-no-eglfs"
|
2017-04-17 14:02:48 +01:00
|
|
|
"-no-gbm"
|
2017-04-16 18:31:05 +01:00
|
|
|
"-no-kms"
|
2017-04-17 14:02:48 +01:00
|
|
|
"-no-linuxfb"
|
2017-04-16 18:31:05 +01:00
|
|
|
|
2017-04-17 14:02:48 +01:00
|
|
|
''-${lib.optionalString (cups == null) "no-"}cups''
|
|
|
|
"-dbus-linked"
|
|
|
|
"-glib"
|
2017-04-16 18:31:05 +01:00
|
|
|
"-gtk"
|
2017-04-17 14:02:48 +01:00
|
|
|
"-inotify"
|
|
|
|
"-system-libjpeg"
|
2017-04-16 18:31:05 +01:00
|
|
|
"-system-libpng"
|
|
|
|
]
|
|
|
|
|
|
|
|
++ lib.optionals stdenv.isDarwin [
|
|
|
|
"-platform macx-clang"
|
|
|
|
"-no-use-gold-linker"
|
|
|
|
"-no-fontconfig"
|
|
|
|
"-qt-freetype"
|
|
|
|
"-qt-libpng"
|
|
|
|
];
|
2017-02-28 15:37:57 +00:00
|
|
|
|
2017-04-25 13:12:11 +01:00
|
|
|
enableParallelBuilding = true;
|
2017-02-28 15:37:57 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
find "$out" -name "*.cmake" | while read file; do
|
|
|
|
substituteInPlace "$file" \
|
|
|
|
--subst-var-by NIX_OUT "$out" \
|
|
|
|
--subst-var-by NIX_DEV "$dev"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
# We cannot simply set these paths in configureFlags because libQtCore retains
|
|
|
|
# references to the paths it was built with.
|
|
|
|
moveToOutput "bin" "$dev"
|
|
|
|
moveToOutput "include" "$dev"
|
|
|
|
moveToOutput "mkspecs" "$dev"
|
|
|
|
|
|
|
|
# The destination directory must exist or moveToOutput will do nothing
|
|
|
|
mkdir -p "$dev/share"
|
|
|
|
moveToOutput "share/doc" "$dev"
|
|
|
|
'';
|
|
|
|
|
|
|
|
postFixup =
|
|
|
|
''
|
|
|
|
# Don't retain build-time dependencies like gdb.
|
|
|
|
sed '/QMAKE_DEFAULT_.*DIRS/ d' -i $dev/mkspecs/qconfig.pri
|
2017-04-17 14:04:19 +01:00
|
|
|
''
|
|
|
|
|
|
|
|
# Move libtool archives into $dev
|
|
|
|
+ ''
|
|
|
|
if [ "z''${!outputLib}" != "z''${!outputDev}" ]; then
|
|
|
|
pushd "''${!outputLib}"
|
|
|
|
find lib -name '*.a' -o -name '*.la' | while read -r file; do
|
|
|
|
mkdir -p "''${!outputDev}/$(dirname "$file")"
|
|
|
|
mv "''${!outputLib}/$file" "''${!outputDev}/$file"
|
|
|
|
done
|
|
|
|
popd
|
|
|
|
fi
|
|
|
|
''
|
2017-02-28 15:37:57 +00:00
|
|
|
|
2017-04-17 14:04:19 +01:00
|
|
|
# Move qmake project files into $dev.
|
|
|
|
# Don't move .prl files on darwin because they end up in
|
|
|
|
# "dev/lib/Foo.framework/Foo.prl" which interferes with subsequent
|
|
|
|
# use of lndir in the qtbase setup-hook. On Linux, the .prl files
|
|
|
|
# are in lib, and so do not cause a subsequent recreation of deep
|
|
|
|
# framework directory trees.
|
|
|
|
+ lib.optionalString (!stdenv.isDarwin) ''
|
2017-02-28 15:37:57 +00:00
|
|
|
if [ "z''${!outputLib}" != "z''${!outputDev}" ]; then
|
|
|
|
pushd "''${!outputLib}"
|
2017-04-17 14:04:19 +01:00
|
|
|
find lib -name '*.prl' | while read -r file; do
|
|
|
|
mkdir -p "''${!outputDev}/$(dirname "$file")"
|
|
|
|
mv "''${!outputLib}/$file" "''${!outputDev}/$file"
|
|
|
|
done
|
2017-02-28 15:37:57 +00:00
|
|
|
popd
|
|
|
|
fi
|
2017-03-10 15:23:05 +00:00
|
|
|
''
|
2017-04-16 18:31:05 +01:00
|
|
|
|
2017-03-10 15:23:05 +00:00
|
|
|
# fixup .pc file (where to find 'moc' etc.)
|
|
|
|
+ lib.optionalString (!stdenv.isDarwin) ''
|
|
|
|
sed -i "$dev/lib/pkgconfig/Qt5Core.pc" \
|
2017-03-11 22:25:48 +00:00
|
|
|
-e "/^host_bins=/ c host_bins=$dev/bin"
|
2017-03-01 17:30:27 +00:00
|
|
|
''
|
2017-04-16 18:31:05 +01:00
|
|
|
|
2017-03-01 17:30:27 +00:00
|
|
|
+ lib.optionalString stdenv.isDarwin ''
|
|
|
|
fixDarwinDylibNames_rpath() {
|
|
|
|
local flags=()
|
|
|
|
|
|
|
|
for fn in "$@"; do
|
|
|
|
flags+=(-change "@rpath/$fn.framework/Versions/5/$fn" "$out/lib/$fn.framework/Versions/5/$fn")
|
|
|
|
done
|
|
|
|
|
|
|
|
for fn in "$@"; do
|
|
|
|
echo "$fn: fixing dylib"
|
|
|
|
install_name_tool -id "$out/lib/$fn.framework/Versions/5/$fn" "''${flags[@]}" "$out/lib/$fn.framework/Versions/5/$fn"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
fixDarwinDylibNames_rpath "QtConcurrent" "QtPrintSupport" "QtCore" "QtSql" "QtDBus" "QtTest" "QtGui" "QtWidgets" "QtNetwork" "QtXml" "QtOpenGL"
|
2017-02-28 15:37:57 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
inherit lndir;
|
2017-03-01 17:30:27 +00:00
|
|
|
setupHook = if stdenv.isDarwin
|
|
|
|
then ../../qtbase-setup-hook-darwin.sh
|
|
|
|
else ../../qtbase-setup-hook.sh;
|
2017-02-28 15:37:57 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = http://www.qt.io;
|
|
|
|
description = "A cross-platform application framework for C++";
|
|
|
|
license = with licenses; [ fdl13 gpl2 lgpl21 lgpl3 ];
|
2017-03-20 21:09:55 +00:00
|
|
|
maintainers = with maintainers; [ qknight ttuegel periklis ];
|
|
|
|
platforms = platforms.unix;
|
2017-02-28 15:37:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|