2019-07-27 23:05:17 +02:00
|
|
|
{ lib, mkDerivation, fetchFromGitHub, cmake, pkgconfig, lxqt-build-tools, qtbase,
|
2019-02-06 00:13:32 +01:00
|
|
|
qtx11extras, qttools, qtsvg, kwindowsystem, libkscreen, liblxqt,
|
|
|
|
libqtxdg, xorg }:
|
2016-10-03 23:53:48 +02:00
|
|
|
|
2019-07-27 23:05:17 +02:00
|
|
|
mkDerivation rec {
|
2016-10-03 23:53:48 +02:00
|
|
|
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 = ''
|
2019-02-06 00:13:32 +01:00
|
|
|
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
|
|
|
|
2019-07-27 23:05:17 +02:00
|
|
|
meta = with lib; {
|
2016-10-03 23:53:48 +02:00
|
|
|
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;
|
2019-11-02 18:49:35 +01:00
|
|
|
platforms = platforms.linux;
|
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
|
|
|
}
|