{ lib , mkDerivation , fetchFromGitHub , cmake , lxqt-build-tools , qtbase , qttools , qtsvg , kwindowsystem , liblxqt , libqtxdg , qtx11extras , lxqtUpdateScript }: mkDerivation rec { pname = "lxqt-notificationd"; version = "0.16.0"; src = fetchFromGitHub { owner = "lxqt"; repo = pname; rev = version; sha256 = "0ahvjf5102a0pz5bfznjvkg55xix6k9bw381gzv6jqw5553snanc"; }; nativeBuildInputs = [ cmake lxqt-build-tools ]; buildInputs = [ qtbase qttools qtsvg kwindowsystem liblxqt libqtxdg qtx11extras ]; passthru.updateScript = lxqtUpdateScript { inherit pname version src; }; meta = with lib; { description = "The LXQt notification daemon"; homepage = "https://github.com/lxqt/lxqt-notificationd"; license = licenses.lgpl21; platforms = platforms.linux; maintainers = with maintainers; [ romildo ]; }; }