2020-04-25 19:01:05 +02:00
|
|
|
{ lib
|
|
|
|
, mkDerivation
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, lxqt-build-tools
|
|
|
|
, qtx11extras
|
|
|
|
, qttools
|
|
|
|
, qtsvg
|
|
|
|
, libqtxdg
|
|
|
|
, polkit-qt
|
|
|
|
, kwindowsystem
|
|
|
|
, xorg
|
2020-04-26 16:53:59 +02:00
|
|
|
, lxqtUpdateScript
|
2020-04-25 19:01:05 +02:00
|
|
|
}:
|
2016-10-03 23:46:35 +02:00
|
|
|
|
2019-07-27 23:05:17 +02:00
|
|
|
mkDerivation rec {
|
2016-10-03 23:46:35 +02:00
|
|
|
pname = "liblxqt";
|
2021-11-05 18:35:00 +01:00
|
|
|
version = "1.0.0";
|
2016-10-03 23:46:35 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-05-22 03:24:38 +02:00
|
|
|
owner = "lxqt";
|
2016-10-03 23:46:35 +02:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-11-05 18:35:00 +01:00
|
|
|
sha256 = "08cqvq99pvz8lz13273hlpv8160r6zyz4f7h4kl1g8xdga7m45gr";
|
2016-10-03 23:46:35 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
2017-02-25 16:44:29 +01:00
|
|
|
lxqt-build-tools
|
2016-10-03 23:46:35 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2017-02-25 16:44:29 +01:00
|
|
|
qtx11extras
|
|
|
|
qttools
|
|
|
|
qtsvg
|
2018-05-22 15:52:54 +02:00
|
|
|
polkit-qt
|
2017-02-25 16:44:29 +01:00
|
|
|
kwindowsystem
|
|
|
|
libqtxdg
|
2016-10-03 23:46:35 +02:00
|
|
|
xorg.libXScrnSaver
|
|
|
|
];
|
|
|
|
|
2021-01-13 23:18:58 +01: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-06 00:13:21 +01:00
|
|
|
postPatch = ''
|
2021-04-18 14:35:11 +02: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 15:52:54 +02:00
|
|
|
sed -i "s|\''${POLKITQT-1_POLICY_FILES_INSTALL_DIR}|''${out}/share/polkit-1/actions|" CMakeLists.txt
|
2016-10-03 23:46:35 +02:00
|
|
|
'';
|
2018-05-22 15:52:54 +02:00
|
|
|
|
2020-04-26 16:53:59 +02:00
|
|
|
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
|
|
|
|
|
2019-07-27 23:05:17 +02:00
|
|
|
meta = with lib; {
|
2016-10-03 23:46:35 +02:00
|
|
|
description = "Core utility library for all LXQt components";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/lxqt/liblxqt";
|
2016-10-03 23:46:35 +02:00
|
|
|
license = licenses.lgpl21Plus;
|
2019-11-02 18:49:35 +01:00
|
|
|
platforms = platforms.linux;
|
2017-02-19 12:02:25 +01:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
2016-10-03 23:46:35 +02:00
|
|
|
};
|
|
|
|
}
|