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

37 lines
796 B
Nix
Raw Normal View History

{ lib, mkDerivation, fetchFromGitHub, cmake, lxqt-build-tools, qtbase, qttools, qtsvg, kwindowsystem, liblxqt, libqtxdg, qtx11extras }:
2016-10-03 21:55:22 +00:00
mkDerivation rec {
2016-10-03 21:55:22 +00:00
pname = "lxqt-notificationd";
version = "0.14.1";
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 = "1ihaf2i361j2snyy6kg8ccpfnc8hppvacmxjqzb1lpyaf1ajd139";
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
];
meta = with lib; {
2016-10-03 21:55:22 +00:00
description = "The LXQt notification daemon";
homepage = https://github.com/lxqt/lxqt-notificationd;
2016-10-03 21:55:22 +00:00
license = licenses.lgpl21;
platforms = platforms.linux;
2017-02-19 13:15:20 +00:00
maintainers = with maintainers; [ romildo ];
2016-10-03 21:55:22 +00:00
};
}