Merge branch 'master' into staging

obadz 92d929c8 c7142c1a

Changed files
+353 -70
nixos
modules
pkgs
+18 -18
nixos/modules/rename.nix
···
(mkRemovedOptionModule [ "services" "iodined" "client" ] "")
# Grsecurity
-
(mkRemovedOptionModule [ "security" "grsecurity" "kernelPatch" ])
-
(mkRemovedOptionModule [ "security" "grsecurity" "config" "mode" ])
-
(mkRemovedOptionModule [ "security" "grsecurity" "config" "priority" ])
-
(mkRemovedOptionModule [ "security" "grsecurity" "config" "system" ])
-
(mkRemovedOptionModule [ "security" "grsecurity" "config" "virtualisationConfig" ])
-
(mkRemovedOptionModule [ "security" "grsecurity" "config" "hardwareVirtualisation" ])
-
(mkRemovedOptionModule [ "security" "grsecurity" "config" "virtualisationSoftware" ])
-
(mkRemovedOptionModule [ "security" "grsecurity" "config" "sysctl" ])
-
(mkRemovedOptionModule [ "security" "grsecurity" "config" "denyChrootChmod" ])
-
(mkRemovedOptionModule [ "security" "grsecurity" "config" "denyChrootCaps" ])
-
(mkRemovedOptionModule [ "security" "grsecurity" "config" "denyUSB" ])
-
(mkRemovedOptionModule [ "security" "grsecurity" "config" "restrictProc" ])
-
(mkRemovedOptionModule [ "security" "grsecurity" "config" "restrictProcWithGroup" ])
-
(mkRemovedOptionModule [ "security" "grsecurity" "config" "unrestrictProcGid" ])
-
(mkRemovedOptionModule [ "security" "grsecurity" "config" "disableRBAC" ])
-
(mkRemovedOptionModule [ "security" "grsecurity" "config" "disableSimultConnect" ])
-
(mkRemovedOptionModule [ "security" "grsecurity" "config" "verboseVersion" ])
-
(mkRemovedOptionModule [ "security" "grsecurity" "config" "kernelExtraConfig" ])
+
(mkRemovedOptionModule [ "security" "grsecurity" "kernelPatch" ] "")
+
(mkRemovedOptionModule [ "security" "grsecurity" "config" "mode" ] "")
+
(mkRemovedOptionModule [ "security" "grsecurity" "config" "priority" ] "")
+
(mkRemovedOptionModule [ "security" "grsecurity" "config" "system" ] "")
+
(mkRemovedOptionModule [ "security" "grsecurity" "config" "virtualisationConfig" ] "")
+
(mkRemovedOptionModule [ "security" "grsecurity" "config" "hardwareVirtualisation" ] "")
+
(mkRemovedOptionModule [ "security" "grsecurity" "config" "virtualisationSoftware" ] "")
+
(mkRemovedOptionModule [ "security" "grsecurity" "config" "sysctl" ] "")
+
(mkRemovedOptionModule [ "security" "grsecurity" "config" "denyChrootChmod" ] "")
+
(mkRemovedOptionModule [ "security" "grsecurity" "config" "denyChrootCaps" ] "")
+
(mkRemovedOptionModule [ "security" "grsecurity" "config" "denyUSB" ] "")
+
(mkRemovedOptionModule [ "security" "grsecurity" "config" "restrictProc" ] "")
+
(mkRemovedOptionModule [ "security" "grsecurity" "config" "restrictProcWithGroup" ] "")
+
(mkRemovedOptionModule [ "security" "grsecurity" "config" "unrestrictProcGid" ] "")
+
(mkRemovedOptionModule [ "security" "grsecurity" "config" "disableRBAC" ] "")
+
(mkRemovedOptionModule [ "security" "grsecurity" "config" "disableSimultConnect" ] "")
+
(mkRemovedOptionModule [ "security" "grsecurity" "config" "verboseVersion" ] "")
+
(mkRemovedOptionModule [ "security" "grsecurity" "config" "kernelExtraConfig" ] "")
# Unity3D
(mkRenamedOptionModule [ "programs" "unity3d" "enable" ] [ "security" "chromiumSuidSandbox" "enable" ])
+32
pkgs/applications/editors/kdevelop5/kdevelop-pg-qt.nix
···
+
{ stdenv, fetchurl, cmake, pkgconfig, extra-cmake-modules, qtbase }:
+
+
let
+
pname = "kdevelop-pg-qt";
+
version = "2.0";
+
dirVersion = "2.0.0";
+
+
in
+
stdenv.mkDerivation rec {
+
name = "${pname}-${version}";
+
+
src = fetchurl {
+
url = "mirror://kde/stable/${pname}/${dirVersion}/src/${name}.tar.xz";
+
sha256 = "2f778d324b7c0962e8bb5f62dd2643bac1a6f3ac971d145b6aace7cd61878993";
+
};
+
+
nativeBuildInputs = [ cmake pkgconfig extra-cmake-modules ];
+
+
buildInputs = [ qtbase ];
+
+
meta = with stdenv.lib; {
+
maintainers = [ maintainers.ambrop72 ];
+
platforms = platforms.linux;
+
description = "Parser-generator from KDevplatform";
+
longDescription = ''
+
KDevelop-PG-Qt is the parser-generator from KDevplatform.
+
It is used for some KDevelop-languagesupport-plugins (Ruby, PHP, CSS...).
+
'';
+
homepage = https://www.kdevelop.org;
+
license = with stdenv.lib.licenses; [ lgpl2Plus ];
+
};
+
}
+54
pkgs/applications/editors/kdevelop5/kdevelop.nix
···
+
{ stdenv, fetchurl, cmake, gettext, pkgconfig, extra-cmake-modules, makeQtWrapper
+
, qtquickcontrols, qtwebkit
+
, kconfig, kdeclarative, kdoctools, kiconthemes, ki18n, kitemmodels, kitemviews
+
, kjobwidgets, kcmutils, kio, knewstuff, knotifyconfig, kparts, ktexteditor
+
, threadweaver, kxmlgui, kwindowsystem
+
, plasma-framework, krunner, kdevplatform, kdevelop-pg-qt, shared_mime_info
+
, libksysguard, llvmPackages
+
}:
+
+
let
+
pname = "kdevelop";
+
version = "5.0";
+
dirVersion = "5.0.0";
+
+
in
+
stdenv.mkDerivation rec {
+
name = "${pname}-${version}";
+
+
src = fetchurl {
+
url = "mirror://kde/stable/${pname}/${dirVersion}/src/${name}.tar.xz";
+
sha256 = "5e034b8670f4ba13ccb2948c28efa0b54df346e85b648078698cca8974ea811c";
+
};
+
+
nativeBuildInputs = [ cmake gettext pkgconfig extra-cmake-modules makeQtWrapper ];
+
+
buildInputs = [
+
qtquickcontrols qtwebkit
+
kconfig kdeclarative kdoctools kiconthemes ki18n kitemmodels kitemviews
+
kjobwidgets kcmutils kio knewstuff knotifyconfig kparts ktexteditor
+
threadweaver kxmlgui kwindowsystem plasma-framework krunner
+
kdevplatform kdevelop-pg-qt shared_mime_info libksysguard
+
llvmPackages.llvm llvmPackages.clang-unwrapped
+
];
+
+
postInstall = ''
+
wrapQtProgram "$out/bin/kdevelop"
+
'';
+
+
meta = with stdenv.lib; {
+
maintainers = [ maintainers.ambrop72 ];
+
platforms = platforms.linux;
+
description = "KDE official IDE";
+
longDescription =
+
''
+
A free, opensource IDE (Integrated Development Environment)
+
for MS Windows, Mac OsX, Linux, Solaris and FreeBSD. It is a
+
feature-full, plugin extendable IDE for C/C++ and other
+
programing languages. It is based on KDevPlatform, KDE and Qt
+
libraries and is under development since 1998.
+
'';
+
homepage = https://www.kdevelop.org;
+
license = with stdenv.lib.licenses; [ gpl2Plus lgpl2Plus ];
+
};
+
}
+44
pkgs/applications/editors/kdevelop5/kdevplatform.nix
···
+
{ stdenv, fetchurl, cmake, gettext, pkgconfig, extra-cmake-modules, makeQtWrapper
+
, boost, subversion, apr, aprutil
+
, qtscript, qtwebkit, grantlee, karchive, kconfig, kcoreaddons, kguiaddons, kiconthemes, ki18n
+
, kitemmodels, kitemviews, kio, kparts, sonnet, kcmutils, knewstuff, knotifications
+
, knotifyconfig, ktexteditor, threadweaver, kdeclarative, libkomparediff2 }:
+
+
let
+
pname = "kdevplatform";
+
version = "5.0";
+
dirVersion = "5.0.0";
+
+
in
+
stdenv.mkDerivation rec {
+
name = "${pname}-${version}";
+
+
src = fetchurl {
+
url = "mirror://kde/stable/kdevelop/${dirVersion}/src/${name}.tar.xz";
+
sha256 = "4085b355ab8d599d902afbc11027e1aefb22afe30d63ed54ea5fe02f24edfd10";
+
};
+
+
nativeBuildInputs = [ cmake gettext pkgconfig extra-cmake-modules makeQtWrapper ];
+
+
propagatedBuildInputs = [ ];
+
buildInputs = [
+
boost subversion apr aprutil
+
qtscript qtwebkit grantlee karchive kconfig kcoreaddons kguiaddons kiconthemes
+
ki18n kitemmodels kitemviews kio kparts sonnet kcmutils knewstuff
+
knotifications knotifyconfig ktexteditor threadweaver kdeclarative
+
libkomparediff2
+
];
+
+
meta = with stdenv.lib; {
+
maintainers = [ maintainers.ambrop72 ];
+
platforms = platforms.linux;
+
description = "KDE libraries for IDE-like programs";
+
longDescription = ''
+
A free, opensource set of libraries that can be used as a foundation for
+
IDE-like programs. It is programing-language independent, and is planned
+
to be used by programs like: KDevelop, Quanta, Kile, KTechLab ... etc."
+
'';
+
homepage = https://www.kdevelop.org;
+
license = with stdenv.lib.licenses; [ gpl2Plus lgpl2Plus ];
+
};
+
}
+3 -3
pkgs/development/libraries/qt-5/5.6/default.nix
···
qtsvg = callPackage ./qtsvg.nix {};
qttools = callPackage ./qttools {};
qttranslations = callPackage ./qttranslations.nix {};
-
/* qtwayland = not packaged */
+
qtwayland = callPackage ./qtwayland.nix {};
qtwebchannel = callPackage ./qtwebchannel.nix {};
qtwebengine = callPackage ./qtwebengine.nix {};
qtwebkit = callPackage ./qtwebkit {};
···
full = env "qt-${qtbase.version}" [
qtconnectivity qtdeclarative qtdoc qtenginio qtgraphicaleffects
qtimageformats qtlocation qtmultimedia qtquickcontrols qtscript
-
qtsensors qtserialport qtsvg qttools qttranslations qtwebsockets
-
qtx11extras qtxmlpatterns
+
qtsensors qtserialport qtsvg qttools qttranslations qtwayland
+
qtwebsockets qtx11extras qtxmlpatterns
];
makeQtWrapper = makeSetupHook { deps = [ makeWrapper ]; } ./make-qt-wrapper.sh;
+91 -27
pkgs/development/libraries/qt-5/5.6/qtbase/cmake-paths.patch
···
-
Index: qtbase-opensource-src-5.6.0/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in
+
Index: qtbase-opensource-src-5.6.1/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in
===================================================================
-
--- qtbase-opensource-src-5.6.0.orig/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in
-
+++ qtbase-opensource-src-5.6.0/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in
+
--- qtbase-opensource-src-5.6.1.orig/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in
+
+++ qtbase-opensource-src-5.6.1/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in
@@ -9,30 +9,6 @@ if (CMAKE_VERSION VERSION_LESS 3.0.0)
endif()
!!ENDIF
···
endif()
!!ENDIF // CMAKE_RELEASE_TYPE
!!ENDIF // CMAKE_FIND_OTHER_LIBRARY_BUILD
-
@@ -329,7 +259,7 @@ if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME
+
@@ -328,11 +258,7 @@ if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME
+
macro(_populate_$${CMAKE_MODULE_NAME}_plugin_properties Plugin Configuration PLUGIN_LOCATION)
set_property(TARGET Qt5::${Plugin} APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration})
-
!!IF isEmpty(CMAKE_PLUGIN_DIR_IS_ABSOLUTE)
+
-!!IF isEmpty(CMAKE_PLUGIN_DIR_IS_ABSOLUTE)
- set(imported_location \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_PLUGIN_DIR}${PLUGIN_LOCATION}\")
-
+ set(imported_location \"@NIX_OUT@/$${CMAKE_PLUGIN_DIR}${PLUGIN_LOCATION}\")
-
!!ELSE
-
set(imported_location \"$${CMAKE_PLUGIN_DIR}${PLUGIN_LOCATION}\")
-
!!ENDIF
-
Index: qtbase-opensource-src-5.6.0/src/gui/Qt5GuiConfigExtras.cmake.in
+
-!!ELSE
+
- set(imported_location \"$${CMAKE_PLUGIN_DIR}${PLUGIN_LOCATION}\")
+
-!!ENDIF
+
+ set(imported_location \"${PLUGIN_LOCATION}\")
+
_qt5_$${CMAKE_MODULE_NAME}_check_file_exists(${imported_location})
+
set_target_properties(Qt5::${Plugin} PROPERTIES
+
\"IMPORTED_LOCATION_${Configuration}\" ${imported_location}
+
Index: qtbase-opensource-src-5.6.1/src/gui/Qt5GuiConfigExtras.cmake.in
===================================================================
-
--- qtbase-opensource-src-5.6.0.orig/src/gui/Qt5GuiConfigExtras.cmake.in
-
+++ qtbase-opensource-src-5.6.0/src/gui/Qt5GuiConfigExtras.cmake.in
+
--- qtbase-opensource-src-5.6.1.orig/src/gui/Qt5GuiConfigExtras.cmake.in
+
+++ qtbase-opensource-src-5.6.1/src/gui/Qt5GuiConfigExtras.cmake.in
@@ -2,7 +2,7 @@
!!IF !isEmpty(CMAKE_ANGLE_EGL_DLL_RELEASE)
···
!!ELSE
set(imported_implib \"$${CMAKE_LIB_DIR}${IMPLIB_LOCATION}\")
!!ENDIF
-
Index: qtbase-opensource-src-5.6.0/src/widgets/Qt5WidgetsConfigExtras.cmake.in
+
Index: qtbase-opensource-src-5.6.1/src/widgets/Qt5WidgetsConfigExtras.cmake.in
===================================================================
-
--- qtbase-opensource-src-5.6.0.orig/src/widgets/Qt5WidgetsConfigExtras.cmake.in
-
+++ qtbase-opensource-src-5.6.0/src/widgets/Qt5WidgetsConfigExtras.cmake.in
+
--- qtbase-opensource-src-5.6.1.orig/src/widgets/Qt5WidgetsConfigExtras.cmake.in
+
+++ qtbase-opensource-src-5.6.1/src/widgets/Qt5WidgetsConfigExtras.cmake.in
@@ -3,7 +3,7 @@ if (NOT TARGET Qt5::uic)
add_executable(Qt5::uic IMPORTED)
···
!!ELSE
set(imported_location \"$${CMAKE_BIN_DIR}uic$$CMAKE_BIN_SUFFIX\")
!!ENDIF
-
Index: qtbase-opensource-src-5.6.0/src/corelib/Qt5CoreConfigExtras.cmake.in
+
Index: qtbase-opensource-src-5.6.1/src/corelib/Qt5CoreConfigExtras.cmake.in
===================================================================
-
--- qtbase-opensource-src-5.6.0.orig/src/corelib/Qt5CoreConfigExtras.cmake.in
-
+++ qtbase-opensource-src-5.6.0/src/corelib/Qt5CoreConfigExtras.cmake.in
+
--- qtbase-opensource-src-5.6.1.orig/src/corelib/Qt5CoreConfigExtras.cmake.in
+
+++ qtbase-opensource-src-5.6.1/src/corelib/Qt5CoreConfigExtras.cmake.in
@@ -3,7 +3,7 @@ if (NOT TARGET Qt5::qmake)
add_executable(Qt5::qmake IMPORTED)
···
!!ELSE
set(imported_location \"$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_DEBUG}\")
!!ENDIF
-
Index: qtbase-opensource-src-5.6.0/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in
+
Index: qtbase-opensource-src-5.6.1/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in
===================================================================
-
--- qtbase-opensource-src-5.6.0.orig/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in
-
+++ qtbase-opensource-src-5.6.0/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in
+
--- qtbase-opensource-src-5.6.1.orig/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in
+
+++ qtbase-opensource-src-5.6.1/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in
@@ -1,6 +1,6 @@
!!IF isEmpty(CMAKE_INSTALL_DATA_DIR_IS_ABSOLUTE)
···
!!ELSE
set(_qt5_corelib_extra_includes \"$${CMAKE_INSTALL_DATA_DIR}mkspecs/$${CMAKE_MKSPEC}\")
!!ENDIF
-
Index: qtbase-opensource-src-5.6.0/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in
+
Index: qtbase-opensource-src-5.6.1/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in
===================================================================
-
--- qtbase-opensource-src-5.6.0.orig/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in
-
+++ qtbase-opensource-src-5.6.0/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in
+
--- qtbase-opensource-src-5.6.1.orig/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in
+
+++ qtbase-opensource-src-5.6.1/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in
@@ -1,6 +1,6 @@
!!IF isEmpty(CMAKE_HOST_DATA_DIR_IS_ABSOLUTE)
···
!!ELSE
set(_qt5_corelib_extra_includes \"$${CMAKE_HOST_DATA_DIR}mkspecs/$${CMAKE_MKSPEC}\")
!!ENDIF
-
Index: qtbase-opensource-src-5.6.0/src/dbus/Qt5DBusConfigExtras.cmake.in
+
Index: qtbase-opensource-src-5.6.1/src/dbus/Qt5DBusConfigExtras.cmake.in
===================================================================
-
--- qtbase-opensource-src-5.6.0.orig/src/dbus/Qt5DBusConfigExtras.cmake.in
-
+++ qtbase-opensource-src-5.6.0/src/dbus/Qt5DBusConfigExtras.cmake.in
+
--- qtbase-opensource-src-5.6.1.orig/src/dbus/Qt5DBusConfigExtras.cmake.in
+
+++ qtbase-opensource-src-5.6.1/src/dbus/Qt5DBusConfigExtras.cmake.in
@@ -3,7 +3,7 @@ if (NOT TARGET Qt5::qdbuscpp2xml)
add_executable(Qt5::qdbuscpp2xml IMPORTED)
···
!!ELSE
set(imported_location \"$${CMAKE_BIN_DIR}qdbusxml2cpp$$CMAKE_BIN_SUFFIX\")
!!ENDIF
+
Index: qtbase-opensource-src-5.6.1/mkspecs/features/create_cmake.prf
+
===================================================================
+
--- qtbase-opensource-src-5.6.1.orig/mkspecs/features/create_cmake.prf
+
+++ qtbase-opensource-src-5.6.1/mkspecs/features/create_cmake.prf
+
@@ -136,28 +136,28 @@ contains(CONFIG, plugin) {
+
+
win32 {
+
isEmpty(CMAKE_STATIC_TYPE) {
+
- CMAKE_PLUGIN_LOCATION_RELEASE = $$PLUGIN_TYPE/$${TARGET}.dll
+
- CMAKE_PLUGIN_LOCATION_DEBUG = $$PLUGIN_TYPE/$${TARGET}d.dll
+
+ CMAKE_PLUGIN_LOCATION_RELEASE = $${CMAKE_PLUGIN_DIR}$$PLUGIN_TYPE/$${TARGET}.dll
+
+ CMAKE_PLUGIN_LOCATION_DEBUG = $${CMAKE_PLUGIN_DIR}$$PLUGIN_TYPE/$${TARGET}d.dll
+
} else:mingw {
+
- CMAKE_PLUGIN_LOCATION_RELEASE = $$PLUGIN_TYPE/lib$${TARGET}.a
+
- CMAKE_PLUGIN_LOCATION_DEBUG = $$PLUGIN_TYPE/lib$${TARGET}d.a
+
+ CMAKE_PLUGIN_LOCATION_RELEASE = $${CMAKE_PLUGIN_DIR}/$$PLUGIN_TYPE/lib$${TARGET}.a
+
+ CMAKE_PLUGIN_LOCATION_DEBUG = $${CMAKE_PLUGIN_DIR}$$PLUGIN_TYPE/lib$${TARGET}d.a
+
} else { # MSVC static
+
- CMAKE_PLUGIN_LOCATION_RELEASE = $$PLUGIN_TYPE/$${TARGET}.lib
+
- CMAKE_PLUGIN_LOCATION_DEBUG = $$PLUGIN_TYPE/$${TARGET}d.lib
+
+ CMAKE_PLUGIN_LOCATION_RELEASE = $${CMAKE_PLUGIN_DIR}$$PLUGIN_TYPE/$${TARGET}.lib
+
+ CMAKE_PLUGIN_LOCATION_DEBUG = $${CMAKE_PLUGIN_DIR}$$PLUGIN_TYPE/$${TARGET}d.lib
+
}
+
} else {
+
mac {
+
isEmpty(CMAKE_STATIC_TYPE): CMAKE_PlUGIN_EXT = .dylib
+
else: CMAKE_PlUGIN_EXT = .a
+
+
- CMAKE_PLUGIN_LOCATION_RELEASE = $$PLUGIN_TYPE/lib$${TARGET}$${CMAKE_PlUGIN_EXT}
+
- CMAKE_PLUGIN_LOCATION_DEBUG = $$PLUGIN_TYPE/lib$${TARGET}$${CMAKE_PlUGIN_EXT}
+
+ CMAKE_PLUGIN_LOCATION_RELEASE = $${CMAKE_PLUGIN_DIR}$$PLUGIN_TYPE/lib$${TARGET}$${CMAKE_PlUGIN_EXT}
+
+ CMAKE_PLUGIN_LOCATION_DEBUG = $${CMAKE_PLUGIN_DIR}$$PLUGIN_TYPE/lib$${TARGET}$${CMAKE_PlUGIN_EXT}
+
} else {
+
isEmpty(CMAKE_STATIC_TYPE): CMAKE_PlUGIN_EXT = .so
+
else: CMAKE_PlUGIN_EXT = .a
+
+
- CMAKE_PLUGIN_LOCATION_RELEASE = $$PLUGIN_TYPE/lib$${TARGET}$${CMAKE_PlUGIN_EXT}
+
- CMAKE_PLUGIN_LOCATION_DEBUG = $$PLUGIN_TYPE/lib$${TARGET}$${CMAKE_PlUGIN_EXT}
+
+ CMAKE_PLUGIN_LOCATION_RELEASE = $${CMAKE_PLUGIN_DIR}$$PLUGIN_TYPE/lib$${TARGET}$${CMAKE_PlUGIN_EXT}
+
+ CMAKE_PLUGIN_LOCATION_DEBUG = $${CMAKE_PLUGIN_DIR}$$PLUGIN_TYPE/lib$${TARGET}$${CMAKE_PlUGIN_EXT}
+
}
+
}
+
cmake_target_file.input = $$PWD/data/cmake/Qt5PluginTarget.cmake.in
+
Index: qtbase-opensource-src-5.6.1/mkspecs/features/data/cmake/Qt5PluginTarget.cmake.in
+
===================================================================
+
--- qtbase-opensource-src-5.6.1.orig/mkspecs/features/data/cmake/Qt5PluginTarget.cmake.in
+
+++ qtbase-opensource-src-5.6.1/mkspecs/features/data/cmake/Qt5PluginTarget.cmake.in
+
@@ -2,10 +2,10 @@
+
add_library(Qt5::$$CMAKE_PLUGIN_NAME MODULE IMPORTED)
+
+
!!IF !isEmpty(CMAKE_RELEASE_TYPE)
+
-_populate_$${CMAKE_MODULE_NAME}_plugin_properties($$CMAKE_PLUGIN_NAME RELEASE \"$${CMAKE_PLUGIN_LOCATION_RELEASE}\")
+
+_populate_$${CMAKE_MODULE_NAME}_plugin_properties($$CMAKE_PLUGIN_NAME RELEASE \"@NIX_OUT@/$${CMAKE_PLUGIN_LOCATION_RELEASE}\")
+
!!ENDIF
+
!!IF !isEmpty(CMAKE_DEBUG_TYPE)
+
-_populate_$${CMAKE_MODULE_NAME}_plugin_properties($$CMAKE_PLUGIN_NAME DEBUG \"$${CMAKE_PLUGIN_LOCATION_DEBUG}\")
+
+_populate_$${CMAKE_MODULE_NAME}_plugin_properties($$CMAKE_PLUGIN_NAME DEBUG \"@NIX_OUT@/$${CMAKE_PLUGIN_LOCATION_DEBUG}\")
+
!!ENDIF
+
+
list(APPEND Qt5$${CMAKE_MODULE_NAME}_PLUGINS Qt5::$$CMAKE_PLUGIN_NAME)
+4 -4
pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-dbus.patch
···
-
Index: qtbase-opensource-src-5.5.1/src/dbus/qdbus_symbols.cpp
+
Index: qtbase-opensource-src-5.6.1/src/dbus/qdbus_symbols.cpp
===================================================================
-
--- qtbase-opensource-src-5.5.1.orig/src/dbus/qdbus_symbols.cpp
-
+++ qtbase-opensource-src-5.5.1/src/dbus/qdbus_symbols.cpp
-
@@ -89,7 +89,7 @@ bool qdbus_loadLibDBus()
+
--- qtbase-opensource-src-5.6.1.orig/src/dbus/qdbus_symbols.cpp
+
+++ qtbase-opensource-src-5.6.1/src/dbus/qdbus_symbols.cpp
+
@@ -90,7 +90,7 @@ bool qdbus_loadLibDBus()
#ifdef Q_OS_WIN
QLatin1String("dbus-1"),
#endif
+10 -10
pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-resolv.patch
···
-
Index: qtbase-opensource-src-5.6.0/src/network/kernel/qdnslookup_unix.cpp
+
Index: qtbase-opensource-src-5.6.1/src/network/kernel/qdnslookup_unix.cpp
===================================================================
-
--- qtbase-opensource-src-5.6.0.orig/src/network/kernel/qdnslookup_unix.cpp
-
+++ qtbase-opensource-src-5.6.0/src/network/kernel/qdnslookup_unix.cpp
-
@@ -79,7 +79,7 @@ static void resolveLibrary()
+
--- qtbase-opensource-src-5.6.1.orig/src/network/kernel/qdnslookup_unix.cpp
+
+++ qtbase-opensource-src-5.6.1/src/network/kernel/qdnslookup_unix.cpp
+
@@ -78,7 +78,7 @@ static bool resolveLibraryInternal()
if (!lib.load())
#endif
{
- lib.setFileName(QLatin1String("resolv"));
+ lib.setFileName(QLatin1String("@glibc@/lib/resolv"));
if (!lib.load())
-
return;
+
return false;
}
-
Index: qtbase-opensource-src-5.6.0/src/network/kernel/qhostinfo_unix.cpp
+
Index: qtbase-opensource-src-5.6.1/src/network/kernel/qhostinfo_unix.cpp
===================================================================
-
--- qtbase-opensource-src-5.6.0.orig/src/network/kernel/qhostinfo_unix.cpp
-
+++ qtbase-opensource-src-5.6.0/src/network/kernel/qhostinfo_unix.cpp
-
@@ -95,7 +95,7 @@ static void resolveLibrary()
+
--- qtbase-opensource-src-5.6.1.orig/src/network/kernel/qhostinfo_unix.cpp
+
+++ qtbase-opensource-src-5.6.1/src/network/kernel/qhostinfo_unix.cpp
+
@@ -94,7 +94,7 @@ static bool resolveLibraryInternal()
if (!lib.load())
#endif
{
- lib.setFileName(QLatin1String("resolv"));
+ lib.setFileName(QLatin1String("@glibc@/lib/libresolv"));
if (!lib.load())
-
return;
+
return false;
}
+8
pkgs/development/libraries/qt-5/5.6/qtwayland.nix
···
+
{ qtSubmodule, qtbase, qtquickcontrols, wayland, pkgconfig }:
+
+
qtSubmodule {
+
name = "qtwayland";
+
qtInputs = [ qtbase qtquickcontrols ];
+
buildInputs = [ wayland ];
+
nativeBuildInputs = [ pkgconfig ];
+
}
+3 -2
pkgs/development/libraries/qt-5/5.7/default.nix
···
qtsvg = callPackage ./qtsvg.nix {};
qttools = callPackage ./qttools {};
qttranslations = callPackage ./qttranslations.nix {};
+
qtwayland = callPackage ./qtwayland.nix {};
qtwebchannel = callPackage ./qtwebchannel.nix {};
qtwebengine = callPackage ./qtwebengine.nix {};
qtwebkit = callPackage ./qtwebkit {};
···
full = env "qt-${qtbase.version}" [
qtconnectivity qtdeclarative qtdoc qtgraphicaleffects
qtimageformats qtlocation qtmultimedia qtquickcontrols qtscript
-
qtsensors qtserialport qtsvg qttools qttranslations qtwebsockets
-
qtx11extras qtxmlpatterns
+
qtsensors qtserialport qtsvg qttools qttranslations qtwayland
+
qtwebsockets qtx11extras qtxmlpatterns
];
makeQtWrapper =
+70 -6
pkgs/development/libraries/qt-5/5.7/qtbase/cmake-paths.patch
···
endif()
!!ENDIF // CMAKE_RELEASE_TYPE
!!ENDIF // CMAKE_FIND_OTHER_LIBRARY_BUILD
-
@@ -329,7 +259,7 @@ if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME
+
@@ -328,11 +258,7 @@ if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME
+
macro(_populate_$${CMAKE_MODULE_NAME}_plugin_properties Plugin Configuration PLUGIN_LOCATION)
set_property(TARGET Qt5::${Plugin} APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration})
-
!!IF isEmpty(CMAKE_PLUGIN_DIR_IS_ABSOLUTE)
+
-!!IF isEmpty(CMAKE_PLUGIN_DIR_IS_ABSOLUTE)
- set(imported_location \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_PLUGIN_DIR}${PLUGIN_LOCATION}\")
-
+ set(imported_location \"@NIX_OUT@/$${CMAKE_PLUGIN_DIR}${PLUGIN_LOCATION}\")
-
!!ELSE
-
set(imported_location \"$${CMAKE_PLUGIN_DIR}${PLUGIN_LOCATION}\")
-
!!ENDIF
+
-!!ELSE
+
- set(imported_location \"$${CMAKE_PLUGIN_DIR}${PLUGIN_LOCATION}\")
+
-!!ENDIF
+
+ set(imported_location \"${PLUGIN_LOCATION}\")
+
_qt5_$${CMAKE_MODULE_NAME}_check_file_exists(${imported_location})
+
set_target_properties(Qt5::${Plugin} PROPERTIES
+
\"IMPORTED_LOCATION_${Configuration}\" ${imported_location}
Index: qtbase-opensource-src-5.7.0/src/gui/Qt5GuiConfigExtras.cmake.in
===================================================================
--- qtbase-opensource-src-5.7.0.orig/src/gui/Qt5GuiConfigExtras.cmake.in
···
!!ELSE
set(imported_location \"$${CMAKE_BIN_DIR}qdbusxml2cpp$$CMAKE_BIN_SUFFIX\")
!!ENDIF
+
Index: qtbase-opensource-src-5.7.0/mkspecs/features/create_cmake.prf
+
===================================================================
+
--- qtbase-opensource-src-5.7.0.orig/mkspecs/features/create_cmake.prf
+
+++ qtbase-opensource-src-5.7.0/mkspecs/features/create_cmake.prf
+
@@ -136,28 +136,28 @@ contains(CONFIG, plugin) {
+
+
win32 {
+
isEmpty(CMAKE_STATIC_TYPE) {
+
- CMAKE_PLUGIN_LOCATION_RELEASE = $$PLUGIN_TYPE/$${TARGET}.dll
+
- CMAKE_PLUGIN_LOCATION_DEBUG = $$PLUGIN_TYPE/$${TARGET}d.dll
+
+ CMAKE_PLUGIN_LOCATION_RELEASE = $${CMAKE_PLUGIN_DIR}$$PLUGIN_TYPE/$${TARGET}.dll
+
+ CMAKE_PLUGIN_LOCATION_DEBUG = $${CMAKE_PLUGIN_DIR}$$PLUGIN_TYPE/$${TARGET}d.dll
+
} else:mingw {
+
- CMAKE_PLUGIN_LOCATION_RELEASE = $$PLUGIN_TYPE/lib$${TARGET}.a
+
- CMAKE_PLUGIN_LOCATION_DEBUG = $$PLUGIN_TYPE/lib$${TARGET}d.a
+
+ CMAKE_PLUGIN_LOCATION_RELEASE = $${CMAKE_PLUGIN_DIR}/$$PLUGIN_TYPE/lib$${TARGET}.a
+
+ CMAKE_PLUGIN_LOCATION_DEBUG = $${CMAKE_PLUGIN_DIR}$$PLUGIN_TYPE/lib$${TARGET}d.a
+
} else { # MSVC static
+
- CMAKE_PLUGIN_LOCATION_RELEASE = $$PLUGIN_TYPE/$${TARGET}.lib
+
- CMAKE_PLUGIN_LOCATION_DEBUG = $$PLUGIN_TYPE/$${TARGET}d.lib
+
+ CMAKE_PLUGIN_LOCATION_RELEASE = $${CMAKE_PLUGIN_DIR}$$PLUGIN_TYPE/$${TARGET}.lib
+
+ CMAKE_PLUGIN_LOCATION_DEBUG = $${CMAKE_PLUGIN_DIR}$$PLUGIN_TYPE/$${TARGET}d.lib
+
}
+
} else {
+
mac {
+
isEmpty(CMAKE_STATIC_TYPE): CMAKE_PlUGIN_EXT = .dylib
+
else: CMAKE_PlUGIN_EXT = .a
+
+
- CMAKE_PLUGIN_LOCATION_RELEASE = $$PLUGIN_TYPE/lib$${TARGET}$${CMAKE_PlUGIN_EXT}
+
- CMAKE_PLUGIN_LOCATION_DEBUG = $$PLUGIN_TYPE/lib$${TARGET}$${CMAKE_PlUGIN_EXT}
+
+ CMAKE_PLUGIN_LOCATION_RELEASE = $${CMAKE_PLUGIN_DIR}$$PLUGIN_TYPE/lib$${TARGET}$${CMAKE_PlUGIN_EXT}
+
+ CMAKE_PLUGIN_LOCATION_DEBUG = $${CMAKE_PLUGIN_DIR}$$PLUGIN_TYPE/lib$${TARGET}$${CMAKE_PlUGIN_EXT}
+
} else {
+
isEmpty(CMAKE_STATIC_TYPE): CMAKE_PlUGIN_EXT = .so
+
else: CMAKE_PlUGIN_EXT = .a
+
+
- CMAKE_PLUGIN_LOCATION_RELEASE = $$PLUGIN_TYPE/lib$${TARGET}$${CMAKE_PlUGIN_EXT}
+
- CMAKE_PLUGIN_LOCATION_DEBUG = $$PLUGIN_TYPE/lib$${TARGET}$${CMAKE_PlUGIN_EXT}
+
+ CMAKE_PLUGIN_LOCATION_RELEASE = $${CMAKE_PLUGIN_DIR}$$PLUGIN_TYPE/lib$${TARGET}$${CMAKE_PlUGIN_EXT}
+
+ CMAKE_PLUGIN_LOCATION_DEBUG = $${CMAKE_PLUGIN_DIR}$$PLUGIN_TYPE/lib$${TARGET}$${CMAKE_PlUGIN_EXT}
+
}
+
}
+
cmake_target_file.input = $$PWD/data/cmake/Qt5PluginTarget.cmake.in
+
Index: qtbase-opensource-src-5.7.0/mkspecs/features/data/cmake/Qt5PluginTarget.cmake.in
+
===================================================================
+
--- qtbase-opensource-src-5.7.0.orig/mkspecs/features/data/cmake/Qt5PluginTarget.cmake.in
+
+++ qtbase-opensource-src-5.7.0/mkspecs/features/data/cmake/Qt5PluginTarget.cmake.in
+
@@ -2,10 +2,10 @@
+
add_library(Qt5::$$CMAKE_PLUGIN_NAME MODULE IMPORTED)
+
+
!!IF !isEmpty(CMAKE_RELEASE_TYPE)
+
-_populate_$${CMAKE_MODULE_NAME}_plugin_properties($$CMAKE_PLUGIN_NAME RELEASE \"$${CMAKE_PLUGIN_LOCATION_RELEASE}\")
+
+_populate_$${CMAKE_MODULE_NAME}_plugin_properties($$CMAKE_PLUGIN_NAME RELEASE \"@NIX_OUT@/$${CMAKE_PLUGIN_LOCATION_RELEASE}\")
+
!!ENDIF
+
!!IF !isEmpty(CMAKE_DEBUG_TYPE)
+
-_populate_$${CMAKE_MODULE_NAME}_plugin_properties($$CMAKE_PLUGIN_NAME DEBUG \"$${CMAKE_PLUGIN_LOCATION_DEBUG}\")
+
+_populate_$${CMAKE_MODULE_NAME}_plugin_properties($$CMAKE_PLUGIN_NAME DEBUG \"@NIX_OUT@/$${CMAKE_PLUGIN_LOCATION_DEBUG}\")
+
!!ENDIF
+
+
list(APPEND Qt5$${CMAKE_MODULE_NAME}_PLUGINS Qt5::$$CMAKE_PLUGIN_NAME)
+8
pkgs/development/libraries/qt-5/5.7/qtwayland.nix
···
+
{ qtSubmodule, qtbase, qtquickcontrols, wayland, pkgconfig }:
+
+
qtSubmodule {
+
name = "qtwayland";
+
qtInputs = [ qtbase qtquickcontrols ];
+
buildInputs = [ wayland ];
+
nativeBuildInputs = [ pkgconfig ];
+
}
+8
pkgs/top-level/all-packages.nix
···
kdeconnect = qt5.callPackage ../applications/misc/kdeconnect { };
+
kdevelop-pg-qt = kde5.callPackage ../applications/editors/kdevelop5/kdevelop-pg-qt.nix {};
+
+
kdevelop = kde5.callPackage ../applications/editors/kdevelop5/kdevelop.nix {
+
llvmPackages = llvmPackages_38;
+
};
+
+
kdevplatform = kde5.callPackage ../applications/editors/kdevelop5/kdevplatform.nix {};
+
keepnote = callPackage ../applications/office/keepnote {
pygtk = pyGtkGlade;