nixpkgs/pkgs/desktops/lxqt/lxqt-notificationd/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
849 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, lxqt-build-tools
, qtbase
, qttools
, qtsvg
, kwindowsystem
, liblxqt
, libqtxdg
, qtx11extras
, gitUpdater
}:
2016-10-03 23:55:22 +02:00
mkDerivation rec {
2016-10-03 23:55:22 +02:00
pname = "lxqt-notificationd";
version = "1.1.0";
2016-10-03 23:55:22 +02:00
2017-11-02 02:56:20 +01:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-03 23:55:22 +02:00
repo = pname;
rev = version;
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
qtx11extras
2016-10-03 23:55:22 +02:00
];
passthru.updateScript = gitUpdater { };
meta = with lib; {
homepage = "https://github.com/lxqt/lxqt-notificationd";
description = "The LXQt notification daemon";
license = licenses.lgpl21Plus;
platforms = platforms.linux;
2022-04-14 15:52:15 +02:00
maintainers = teams.lxqt.members;
2016-10-03 23:55:22 +02:00
};
}