2019-07-27 22:05:17 +01:00
|
|
|
{ lib, mkDerivation, fetchFromGitHub, cmake, lxqt-build-tools, qtx11extras,
|
2018-05-22 14:52:54 +01:00
|
|
|
qttools, qtsvg, libqtxdg, polkit-qt, kwindowsystem, xorg }:
|
2016-10-03 22:46:35 +01:00
|
|
|
|
2019-07-27 22:05:17 +01:00
|
|
|
mkDerivation rec {
|
2016-10-03 22:46:35 +01:00
|
|
|
pname = "liblxqt";
|
2019-02-26 21:30:57 +00:00
|
|
|
version = "0.14.1";
|
2016-10-03 22:46:35 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-05-22 02:24:38 +01:00
|
|
|
owner = "lxqt";
|
2016-10-03 22:46:35 +01:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2019-02-26 21:30:57 +00:00
|
|
|
sha256 = "0g2502lcws5j74p82qhfryz9n51cvi85hb50r5s227xhkv91q65k";
|
2016-10-03 22:46:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
2017-02-25 15:44:29 +00:00
|
|
|
lxqt-build-tools
|
2016-10-03 22:46:35 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2017-02-25 15:44:29 +00:00
|
|
|
qtx11extras
|
|
|
|
qttools
|
|
|
|
qtsvg
|
2018-05-22 14:52:54 +01:00
|
|
|
polkit-qt
|
2017-02-25 15:44:29 +00:00
|
|
|
kwindowsystem
|
|
|
|
libqtxdg
|
2016-10-03 22:46:35 +01:00
|
|
|
xorg.libXScrnSaver
|
|
|
|
];
|
|
|
|
|
2019-02-05 23:13:21 +00:00
|
|
|
postPatch = ''
|
2018-05-22 14:52:54 +01:00
|
|
|
sed -i "s|\''${POLKITQT-1_POLICY_FILES_INSTALL_DIR}|''${out}/share/polkit-1/actions|" CMakeLists.txt
|
2016-10-03 22:46:35 +01:00
|
|
|
'';
|
2018-05-22 14:52:54 +01:00
|
|
|
|
2019-07-27 22:05:17 +01:00
|
|
|
meta = with lib; {
|
2016-10-03 22:46:35 +01:00
|
|
|
description = "Core utility library for all LXQt components";
|
2018-05-22 02:24:38 +01:00
|
|
|
homepage = https://github.com/lxqt/liblxqt;
|
2016-10-03 22:46:35 +01:00
|
|
|
license = licenses.lgpl21Plus;
|
2019-11-02 17:49:35 +00:00
|
|
|
platforms = platforms.linux;
|
2017-02-19 11:02:25 +00:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
2016-10-03 22:46:35 +01:00
|
|
|
};
|
|
|
|
}
|