{ lib , mkDerivation , fetchFromGitHub , cmake , pkg-config , lxqt , libpulseaudio , pcre , qtbase , qttools , qtx11extras , gitUpdater }: mkDerivation rec { pname = "pavucontrol-qt"; version = "1.3.0"; src = fetchFromGitHub { owner = "lxqt"; repo = pname; rev = version; sha256 = "cXYJ9EMmZ1LHBvjRWM1TEv7ADdG69DTyb5DZN7q3NIQ="; }; nativeBuildInputs = [ cmake pkg-config lxqt.lxqt-build-tools ]; buildInputs = [ qtbase qttools qtx11extras libpulseaudio pcre ]; passthru.updateScript = gitUpdater { }; meta = with lib; { homepage = "https://github.com/lxqt/pavucontrol-qt"; description = "A Pulseaudio mixer in Qt (port of pavucontrol)"; license = licenses.gpl2Plus; platforms = with platforms; linux; maintainers = teams.lxqt.members; }; }