{ lib , mkDerivation , fetchFromGitHub , cmake , qtbase , libqtxdg , lxqt-build-tools , gitUpdater }: mkDerivation rec { pname = "qtxdg-tools"; version = "3.12.0"; src = fetchFromGitHub { owner = "lxqt"; repo = pname; rev = version; hash = "sha256-3i5SVhEMHar09xoSfVCxJtPXeR81orcNR7pSIJImipQ="; }; nativeBuildInputs = [ cmake lxqt-build-tools ]; buildInputs = [ qtbase libqtxdg ]; passthru.updateScript = gitUpdater { }; meta = with lib; { homepage = "https://github.com/lxqt/qtxdg-tools"; description = "libqtxdg user tools"; mainProgram = "qtxdg-mat"; license = licenses.lgpl21Plus; platforms = platforms.linux; maintainers = teams.lxqt.members; }; }