{ lib , mkDerivation , fetchFromGitHub , cmake , lxqt-build-tools , qtbase , qttools , qtx11extras , qtsvg , kwindowsystem , liblxqt , libqtxdg , lxqtUpdateScript }: mkDerivation rec { pname = "lxqt-globalkeys"; version = "0.15.0"; src = fetchFromGitHub { owner = "lxqt"; repo = pname; rev = version; sha256 = "09vib713zbmnwicijycl3n9q35l45lrcw129lf9z95s3ch81x1hm"; }; nativeBuildInputs = [ cmake lxqt-build-tools ]; buildInputs = [ qtbase qttools qtx11extras qtsvg kwindowsystem liblxqt libqtxdg ]; passthru.updateScript = lxqtUpdateScript { inherit pname version src; }; meta = with lib; { description = "LXQt service for global keyboard shortcuts registration"; homepage = "https://github.com/lxqt/lxqt-globalkeys"; license = licenses.lgpl21; platforms = platforms.linux; maintainers = with maintainers; [ romildo ]; }; }