2016-10-03 22:37:31 +01:00
|
|
|
{ pkgs, newScope, fetchFromGitHub }:
|
|
|
|
|
|
|
|
let
|
|
|
|
callPackage = newScope self;
|
|
|
|
|
|
|
|
self = rec {
|
|
|
|
|
|
|
|
# For compiling information, see:
|
2016-10-03 23:57:00 +01:00
|
|
|
# - https://github.com/lxde/lxqt/wiki/Building-from-source
|
|
|
|
|
2016-10-03 22:39:38 +01:00
|
|
|
standardPatch = ''
|
|
|
|
for file in $(find . -name CMakeLists.txt); do
|
|
|
|
substituteInPlace $file \
|
|
|
|
--replace "DESTINATION \''${LXQT_ETC_XDG_DIR}" "DESTINATION etc/xdg" \
|
|
|
|
--replace "DESTINATION \"\''${LXQT_ETC_XDG_DIR}" "DESTINATION \"etc/xdg" \
|
|
|
|
--replace "DESTINATION \"\''${LXQT_SHARE_DIR}" "DESTINATION \"share/lxqt" \
|
2016-10-06 00:41:12 +01:00
|
|
|
--replace "DESTINATION \"\''${LXQT_GRAPHICS_DIR}" "DESTINATION \"share/lxqt/graphics" \
|
2016-10-03 22:39:38 +01:00
|
|
|
--replace "DESTINATION \"\''${QT_PLUGINS_DIR}" "DESTINATION \"lib/qt5/plugins" \
|
|
|
|
--replace "\''${LXQT_TRANSLATIONS_DIR}" share/lxqt/translations
|
|
|
|
echo ============================
|
|
|
|
echo $file
|
|
|
|
grep --color=always DESTINATION $file || true
|
|
|
|
grep --color=always share/lxqt/translations $file || true
|
2016-10-03 23:57:00 +01:00
|
|
|
grep --color=always platform $file || true
|
2016-10-03 22:39:38 +01:00
|
|
|
done
|
|
|
|
echo --------------------------------------------------------
|
|
|
|
'';
|
2016-10-03 22:37:31 +01:00
|
|
|
|
2016-10-03 22:43:06 +01:00
|
|
|
### BASE
|
|
|
|
libqtxdg = callPackage ./base/libqtxdg { };
|
2016-10-03 22:45:16 +01:00
|
|
|
libsysstat = callPackage ./base/libsysstat { };
|
2016-10-03 22:46:35 +01:00
|
|
|
liblxqt = callPackage ./base/liblxqt { };
|
2016-10-03 22:43:06 +01:00
|
|
|
|
2016-10-03 22:49:44 +01:00
|
|
|
### CORE 1
|
|
|
|
libfm-qt = callPackage ./core/libfm-qt { };
|
2016-10-03 22:51:17 +01:00
|
|
|
lxqt-about = callPackage ./core/lxqt-about { };
|
2016-10-03 22:52:08 +01:00
|
|
|
lxqt-admin = callPackage ./core/lxqt-admin { };
|
2016-10-03 22:53:03 +01:00
|
|
|
lxqt-common = callPackage ./core/lxqt-common { };
|
2016-10-03 22:53:48 +01:00
|
|
|
lxqt-config = callPackage ./core/lxqt-config { };
|
2016-10-03 22:54:34 +01:00
|
|
|
lxqt-globalkeys = callPackage ./core/lxqt-globalkeys { };
|
2016-10-03 22:59:34 +01:00
|
|
|
lxqt-l10n = callPackage ./core/lxqt-l10n { };
|
2016-10-03 22:55:22 +01:00
|
|
|
lxqt-notificationd = callPackage ./core/lxqt-notificationd { };
|
2016-10-03 22:56:22 +01:00
|
|
|
lxqt-openssh-askpass = callPackage ./core/lxqt-openssh-askpass { };
|
2016-10-03 22:59:34 +01:00
|
|
|
lxqt-policykit = callPackage ./core/lxqt-policykit { };
|
|
|
|
lxqt-powermanagement = callPackage ./core/lxqt-powermanagement { };
|
2016-10-03 23:00:54 +01:00
|
|
|
lxqt-qtplugin = callPackage ./core/lxqt-qtplugin { };
|
|
|
|
lxqt-session = callPackage ./core/lxqt-session { };
|
2016-10-03 23:01:39 +01:00
|
|
|
lxqt-sudo = callPackage ./core/lxqt-sudo { };
|
2016-10-03 23:03:17 +01:00
|
|
|
pavucontrol-qt = callPackage ./core/pavucontrol-qt { };
|
|
|
|
qtermwidget = callPackage ./core/qtermwidget { };
|
2016-10-03 22:49:44 +01:00
|
|
|
|
2016-10-03 23:03:59 +01:00
|
|
|
### CORE 2
|
|
|
|
lxqt-panel = callPackage ./core/lxqt-panel { };
|
2016-10-03 23:05:01 +01:00
|
|
|
lxqt-runner = callPackage ./core/lxqt-runner { };
|
2016-10-03 23:06:13 +01:00
|
|
|
pcmanfm-qt = callPackage ./core/pcmanfm-qt { };
|
2016-10-03 23:03:59 +01:00
|
|
|
|
2016-10-03 23:08:00 +01:00
|
|
|
### OPTIONAL
|
|
|
|
qterminal = callPackage ./optional/qterminal { };
|
2016-10-06 23:01:04 +01:00
|
|
|
compton-conf = callPackage ./optional/compton-conf { };
|
2016-10-07 10:57:25 +01:00
|
|
|
obconf-qt = callPackage ./optional/obconf-qt { };
|
2016-10-08 14:37:10 +01:00
|
|
|
lximage-qt = callPackage ./optional/lximage-qt { };
|
2016-10-10 12:08:00 +01:00
|
|
|
qps = callPackage ./optional/qps { };
|
2016-10-14 23:48:32 +01:00
|
|
|
screengrab = callPackage ./optional/screengrab { };
|
2016-10-15 11:46:12 +01:00
|
|
|
qlipper = callPackage ./optional/qlipper { };
|
2016-10-14 23:48:32 +01:00
|
|
|
|
2016-10-03 23:57:00 +01:00
|
|
|
};
|
2016-10-03 23:08:00 +01:00
|
|
|
|
2016-10-03 22:37:31 +01:00
|
|
|
in self
|