2020-04-25 19:01:05 +02:00
|
|
|
{ lib
|
|
|
|
, mkDerivation
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, lxqt-build-tools
|
|
|
|
, qtbase
|
|
|
|
, qttools
|
|
|
|
, qtsvg
|
|
|
|
, kwindowsystem
|
|
|
|
, liblxqt
|
|
|
|
, libqtxdg
|
|
|
|
, qtx11extras
|
2022-09-27 23:32:15 +02:00
|
|
|
, gitUpdater
|
2020-04-25 19:01:05 +02:00
|
|
|
}:
|
2016-10-03 23:55:22 +02:00
|
|
|
|
2019-07-27 23:05:17 +02:00
|
|
|
mkDerivation rec {
|
2016-10-03 23:55:22 +02:00
|
|
|
pname = "lxqt-notificationd";
|
2022-04-16 21:16:30 +02:00
|
|
|
version = "1.1.0";
|
2016-10-03 23:55:22 +02:00
|
|
|
|
2017-11-02 02:56:20 +01:00
|
|
|
src = fetchFromGitHub {
|
2018-05-22 03:24:38 +02:00
|
|
|
owner = "lxqt";
|
2016-10-03 23:55:22 +02:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2022-04-16 21:16:30 +02:00
|
|
|
sha256 = "YXwWqab6OW1KE7Zct92xdK/f/QaDVqEMVM+Cb9kNe7E=";
|
2016-10-03 23:55:22 +02:00
|
|
|
};
|
|
|
|
|
2017-02-19 14:15:20 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
2017-02-25 16:44:29 +01:00
|
|
|
lxqt-build-tools
|
2017-02-19 14:15:20 +01:00
|
|
|
];
|
2016-10-03 23:55:22 +02:00
|
|
|
|
|
|
|
buildInputs = [
|
2017-02-25 16:44:29 +01:00
|
|
|
qtbase
|
|
|
|
qttools
|
|
|
|
qtsvg
|
|
|
|
kwindowsystem
|
|
|
|
liblxqt
|
|
|
|
libqtxdg
|
2017-08-20 01:12:47 +02:00
|
|
|
qtx11extras
|
2016-10-03 23:55:22 +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-notificationd";
|
2021-02-08 15:41:52 +01:00
|
|
|
description = "The LXQt notification daemon";
|
|
|
|
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:55:22 +02:00
|
|
|
};
|
|
|
|
}
|