2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, lxqt-build-tools, qtbase, qtx11extras, qttools, qtsvg, kwindowsystem, libkscreen, liblxqt, libqtxdg, xorg }:
|
2016-10-03 22:53:48 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "lxqt-config";
|
2018-05-22 14:53:07 +01:00
|
|
|
version = "0.13.0";
|
2016-10-03 22:53:48 +01:00
|
|
|
|
2017-11-02 01:54:59 +00:00
|
|
|
src = fetchFromGitHub {
|
2018-05-22 02:24:38 +01:00
|
|
|
owner = "lxqt";
|
2016-10-03 22:53:48 +01:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2018-05-22 14:53:07 +01:00
|
|
|
sha256 = "0r5vwkyz0c9b9py3wni4yzkmsvgs6psk9dp1fhfzvbjbknb21bfa";
|
2016-10-03 22:53:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkgconfig
|
2017-02-25 15:44:29 +00:00
|
|
|
lxqt-build-tools
|
2017-02-19 13:05:14 +00:00
|
|
|
];
|
2016-10-03 22:53:48 +01:00
|
|
|
|
|
|
|
buildInputs = [
|
2017-02-25 15:44:29 +00:00
|
|
|
qtbase
|
|
|
|
qtx11extras
|
|
|
|
qttools
|
|
|
|
qtsvg
|
|
|
|
kwindowsystem
|
|
|
|
libkscreen
|
|
|
|
liblxqt
|
|
|
|
libqtxdg
|
2016-10-03 22:53:48 +01:00
|
|
|
xorg.libpthreadstubs
|
|
|
|
xorg.libXdmcp
|
|
|
|
xorg.libXScrnSaver
|
|
|
|
xorg.libxcb
|
|
|
|
xorg.libXcursor
|
|
|
|
];
|
|
|
|
|
|
|
|
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
|
|
|
|
|
2017-11-02 01:54:59 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/CMakeLists.txt \
|
|
|
|
--replace "DESTINATION \"\''${LXQT_ETC_XDG_DIR}" "DESTINATION \"etc/xdg"
|
|
|
|
'';
|
2016-10-03 22:53:48 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Tools to configure LXQt and the underlying operating system";
|
2018-05-22 02:24:38 +01:00
|
|
|
homepage = https://github.com/lxqt/lxqt-config;
|
2016-10-03 22:53:48 +01:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = with platforms; unix;
|
2017-02-19 13:05:14 +00:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
2016-10-03 22:53:48 +01:00
|
|
|
};
|
2017-08-23 11:17:32 +01:00
|
|
|
|
2016-10-03 22:53:48 +01:00
|
|
|
}
|