2020-04-25 17:01:05 +00:00
|
|
|
{ lib
|
|
|
|
, mkDerivation
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, lxqt-build-tools
|
|
|
|
, qtx11extras
|
|
|
|
, qttools
|
|
|
|
, qtsvg
|
|
|
|
, libqtxdg
|
|
|
|
, polkit-qt
|
|
|
|
, kwindowsystem
|
|
|
|
, xorg
|
2022-09-27 21:32:15 +00:00
|
|
|
, gitUpdater
|
2020-04-25 17:01:05 +00:00
|
|
|
}:
|
2016-10-03 21:46:35 +00:00
|
|
|
|
2019-07-27 21:05:17 +00:00
|
|
|
mkDerivation rec {
|
2016-10-03 21:46:35 +00:00
|
|
|
pname = "liblxqt";
|
2022-11-09 13:11:10 +00:00
|
|
|
version = "1.2.0";
|
2016-10-03 21:46:35 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-05-22 01:24:38 +00:00
|
|
|
owner = "lxqt";
|
2016-10-03 21:46:35 +00:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2022-11-09 13:11:10 +00:00
|
|
|
sha256 = "x1gzqmTHDnpAdLxacKyl+gDob1M7toTDUufaM0y+AHA=";
|
2016-10-03 21:46:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
2017-02-25 15:44:29 +00:00
|
|
|
lxqt-build-tools
|
2016-10-03 21:46:35 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2017-02-25 15:44:29 +00:00
|
|
|
qtx11extras
|
|
|
|
qttools
|
|
|
|
qtsvg
|
2018-05-22 13:52:54 +00:00
|
|
|
polkit-qt
|
2017-02-25 15:44:29 +00:00
|
|
|
kwindowsystem
|
|
|
|
libqtxdg
|
2016-10-03 21:46:35 +00:00
|
|
|
xorg.libXScrnSaver
|
|
|
|
];
|
|
|
|
|
2021-01-13 22:18:58 +00:00
|
|
|
# convert name of wrapped binary, e.g. .lxqt-whatever-wrapped to the original name, e.g. lxqt-whatever so binaries can find their resources
|
|
|
|
patches = [ ./fix-application-path.patch ];
|
|
|
|
|
2019-02-05 23:13:21 +00:00
|
|
|
postPatch = ''
|
2021-04-18 12:35:11 +00:00
|
|
|
# https://github.com/NixOS/nixpkgs/issues/119766
|
|
|
|
substituteInPlace lxqtbacklight/linux_backend/driver/libbacklight_backend.c \
|
|
|
|
--replace "pkexec lxqt-backlight_backend" "pkexec $out/bin/lxqt-backlight_backend"
|
|
|
|
|
2018-05-22 13:52:54 +00:00
|
|
|
sed -i "s|\''${POLKITQT-1_POLICY_FILES_INSTALL_DIR}|''${out}/share/polkit-1/actions|" CMakeLists.txt
|
2016-10-03 21:46:35 +00:00
|
|
|
'';
|
2018-05-22 13:52:54 +00:00
|
|
|
|
2022-09-27 21:32:15 +00:00
|
|
|
passthru.updateScript = gitUpdater { };
|
2020-04-26 14:53:59 +00:00
|
|
|
|
2019-07-27 21:05:17 +00:00
|
|
|
meta = with lib; {
|
2016-10-03 21:46:35 +00:00
|
|
|
description = "Core utility library for all LXQt components";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/lxqt/liblxqt";
|
2016-10-03 21:46:35 +00:00
|
|
|
license = licenses.lgpl21Plus;
|
2019-11-02 17:49:35 +00:00
|
|
|
platforms = platforms.linux;
|
2022-04-14 13:52:15 +00:00
|
|
|
maintainers = teams.lxqt.members;
|
2016-10-03 21:46:35 +00:00
|
|
|
};
|
|
|
|
}
|