2020-04-25 19:01:05 +02:00
|
|
|
{ lib
|
|
|
|
, mkDerivation
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, lxqt-build-tools
|
|
|
|
, qtbase
|
|
|
|
, qttools
|
|
|
|
, qtx11extras
|
|
|
|
, qtsvg
|
|
|
|
, kwindowsystem
|
|
|
|
, liblxqt
|
|
|
|
, libqtxdg
|
2022-09-27 23:32:15 +02:00
|
|
|
, gitUpdater
|
2020-04-25 19:01:05 +02:00
|
|
|
}:
|
2016-10-03 23:54:34 +02:00
|
|
|
|
2019-07-27 23:05:17 +02:00
|
|
|
mkDerivation rec {
|
2016-10-03 23:54:34 +02:00
|
|
|
pname = "lxqt-globalkeys";
|
2022-04-16 21:16:30 +02:00
|
|
|
version = "1.1.0";
|
2016-10-03 23:54:34 +02:00
|
|
|
|
2017-11-02 02:55:19 +01:00
|
|
|
src = fetchFromGitHub {
|
2018-05-22 03:24:38 +02:00
|
|
|
owner = "lxqt";
|
2016-10-03 23:54:34 +02:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2022-04-16 21:16:30 +02:00
|
|
|
sha256 = "6io6gH+n7dodTDQjvCqxjvaafQ4E9H7kx+s2QiAm3mY=";
|
2016-10-03 23:54:34 +02:00
|
|
|
};
|
|
|
|
|
2017-02-19 14:08:45 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
2017-02-25 16:44:29 +01:00
|
|
|
lxqt-build-tools
|
2017-02-19 14:08:45 +01:00
|
|
|
];
|
2016-10-03 23:54:34 +02:00
|
|
|
|
|
|
|
buildInputs = [
|
2017-02-25 16:44:29 +01:00
|
|
|
qtbase
|
|
|
|
qttools
|
|
|
|
qtx11extras
|
|
|
|
qtsvg
|
|
|
|
kwindowsystem
|
|
|
|
liblxqt
|
|
|
|
libqtxdg
|
2016-10-03 23:54:34 +02:00
|
|
|
];
|
|
|
|
|
2022-09-27 23:32:15 +02:00
|
|
|
passthru.updateScript = gitUpdater { };
|
2020-04-26 16:53:59 +02:00
|
|
|
|
2019-07-27 23:05:17 +02:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/lxqt/lxqt-globalkeys";
|
2021-02-08 15:41:52 +01:00
|
|
|
description = "LXQt service for global keyboard shortcuts registration";
|
|
|
|
license = licenses.lgpl21Plus;
|
2019-11-02 18:49:35 +01:00
|
|
|
platforms = platforms.linux;
|
2022-04-14 15:52:15 +02:00
|
|
|
maintainers = teams.lxqt.members;
|
2016-10-03 23:54:34 +02:00
|
|
|
};
|
|
|
|
}
|