{ lib , mkDerivation , fetchFromGitHub , cmake , lxqt-build-tools , qtx11extras , qttools , qtsvg , kwindowsystem , liblxqt , libqtxdg , gitUpdater }: mkDerivation rec { pname = "lxqt-about"; version = "1.4.0"; src = fetchFromGitHub { owner = "lxqt"; repo = pname; rev = version; hash = "sha256-FA9xvIi45qpD6iGxiiNKNlcLKzJtb0cWmvDBJRnJFwA="; }; nativeBuildInputs = [ cmake lxqt-build-tools qttools ]; buildInputs = [ qtx11extras qtsvg kwindowsystem liblxqt libqtxdg ]; passthru.updateScript = gitUpdater { }; meta = with lib; { homepage = "https://github.com/lxqt/lxqt-about"; description = "Dialogue window providing information about LXQt and the system it's running on"; mainProgram = "lxqt-about"; license = licenses.lgpl21Plus; platforms = platforms.linux; maintainers = teams.lxqt.members; }; }