2019-02-06 00:13:32 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, lxqt-build-tools, qtbase,
|
|
|
|
qtx11extras, qttools, qtsvg, kwindowsystem, libkscreen, liblxqt,
|
|
|
|
libqtxdg, xorg }:
|
2016-10-03 23:53:48 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "lxqt-config";
|
2019-02-26 22:31:09 +01:00
|
|
|
version = "0.14.1";
|
2016-10-03 23:53:48 +02:00
|
|
|
|
2017-11-02 02:54:59 +01:00
|
|
|
src = fetchFromGitHub {
|
2018-05-22 03:24:38 +02:00
|
|
|
owner = "lxqt";
|
2016-10-03 23:53:48 +02:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2019-02-26 22:31:09 +01:00
|
|
|
sha256 = "0x1k08587i2pakxlrj2n0l82r179sfywnzn2cphxiy89r5zpn7vi";
|
2016-10-03 23:53:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkgconfig
|
2017-02-25 16:44:29 +01:00
|
|
|
lxqt-build-tools
|
2017-02-19 14:05:14 +01:00
|
|
|
];
|
2016-10-03 23:53:48 +02:00
|
|
|
|
|
|
|
buildInputs = [
|
2017-02-25 16:44:29 +01:00
|
|
|
qtbase
|
|
|
|
qtx11extras
|
|
|
|
qttools
|
|
|
|
qtsvg
|
|
|
|
kwindowsystem
|
|
|
|
libkscreen
|
|
|
|
liblxqt
|
|
|
|
libqtxdg
|
2016-10-03 23:53:48 +02:00
|
|
|
xorg.libpthreadstubs
|
|
|
|
xorg.libXdmcp
|
|
|
|
xorg.libXScrnSaver
|
|
|
|
xorg.libxcb
|
|
|
|
xorg.libXcursor
|
2019-02-06 00:13:32 +01:00
|
|
|
xorg.xf86inputlibinput
|
|
|
|
xorg.xf86inputlibinput.dev
|
2016-10-03 23:53:48 +02:00
|
|
|
];
|
|
|
|
|
2017-11-02 02:54:59 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/CMakeLists.txt \
|
|
|
|
--replace "DESTINATION \"\''${LXQT_ETC_XDG_DIR}" "DESTINATION \"etc/xdg"
|
2019-02-06 00:13:32 +01:00
|
|
|
|
|
|
|
for f in \
|
|
|
|
lxqt-config-file-associations/CMakeLists.txt \
|
|
|
|
lxqt-config-brightness/CMakeLists.txt \
|
|
|
|
lxqt-config-appearance/CMakeLists.txt \
|
|
|
|
lxqt-config-locale/CMakeLists.txt \
|
|
|
|
lxqt-config-monitor/CMakeLists.txt \
|
|
|
|
lxqt-config-input/CMakeLists.txt \
|
|
|
|
liblxqt-config-cursor/CMakeLists.txt \
|
|
|
|
src/CMakeLists.txt
|
|
|
|
do
|
|
|
|
substituteInPlace $f \
|
|
|
|
--replace "\''${LXQT_TRANSLATIONS_DIR}" "''${out}/share/lxqt/translations"
|
|
|
|
done
|
|
|
|
|
|
|
|
sed -i "/\''${XORG_LIBINPUT_INCLUDE_DIRS}/a ${xorg.xf86inputlibinput.dev}/include/xorg" lxqt-config-input/CMakeLists.txt
|
2017-11-02 02:54:59 +01:00
|
|
|
'';
|
2016-10-03 23:53:48 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Tools to configure LXQt and the underlying operating system";
|
2018-05-22 03:24:38 +02:00
|
|
|
homepage = https://github.com/lxqt/lxqt-config;
|
2016-10-03 23:53:48 +02:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = with platforms; unix;
|
2017-02-19 14:05:14 +01:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
2016-10-03 23:53:48 +02:00
|
|
|
};
|
2017-08-23 12:17:32 +02:00
|
|
|
|
2016-10-03 23:53:48 +02:00
|
|
|
}
|