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 21:55:22 +00:00
mkDerivation rec {
2016-10-03 21:55:22 +00:00
pname = "lxqt-notificationd";
version = "1.2.0";
2016-10-03 21:55:22 +00:00
2017-11-02 01:56:20 +00:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-03 21:55:22 +00:00
repo = pname;
rev = version;
sha256 = "RbOkMsz3jejoij/GnRbGuoA7vW4GTZxPnkIfbhq64qI=";
2016-10-03 21:55:22 +00:00
};
2017-02-19 13:15:20 +00:00
nativeBuildInputs = [
cmake
2017-02-25 15:44:29 +00:00
lxqt-build-tools
2017-02-19 13:15:20 +00:00
];
2016-10-03 21:55:22 +00:00
buildInputs = [
2017-02-25 15:44:29 +00:00
qtbase
qttools
qtsvg
kwindowsystem
liblxqt
libqtxdg
qtx11extras
2016-10-03 21:55:22 +00: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 13:52:15 +00:00
maintainers = teams.lxqt.members;
2016-10-03 21:55:22 +00:00
};
}