{ lib , mkDerivation , fetchFromGitHub , cmake , pkg-config , lxqt-build-tools , qtbase , qttools , qtsvg , kwindowsystem , liblxqt , libqtxdg , lxqt-globalkeys , qtx11extras , menu-cache , muparser , pcre , lxqtUpdateScript }: mkDerivation rec { pname = "lxqt-runner"; version = "0.17.0"; src = fetchFromGitHub { owner = "lxqt"; repo = pname; rev = version; sha256 = "167gzn6aqk7akzbmrnm7nmcpkl0nphr8axbfgwnw552dnk6v8gn0"; }; nativeBuildInputs = [ cmake pkg-config lxqt-build-tools ]; buildInputs = [ qtbase qttools qtsvg qtx11extras kwindowsystem liblxqt libqtxdg lxqt-globalkeys menu-cache muparser pcre ]; passthru.updateScript = lxqtUpdateScript { inherit pname version src; }; meta = with lib; { homepage = "https://github.com/lxqt/lxqt-runner"; description = "Tool used to launch programs quickly by typing their names"; license = licenses.lgpl21Plus; platforms = platforms.linux; maintainers = with maintainers; [ romildo ]; }; }