lxqt.pavucontrol-qt: 1.4.0 -> 2.0.0

This commit is contained in:
José Romildo 2024-04-18 14:21:42 -03:00
parent 68e00b8029
commit b5a0c3e8de
1 changed files with 11 additions and 7 deletions

View File

@ -1,24 +1,26 @@
{ lib
, mkDerivation
, stdenv
, fetchFromGitHub
, cmake
, pkg-config
, lxqt-build-tools
, libpulseaudio
, lxqt-build-tools
, pkg-config
, qtbase
, qttools
, qtwayland
, wrapQtAppsHook
, gitUpdater
}:
mkDerivation rec {
stdenv.mkDerivation rec {
pname = "pavucontrol-qt";
version = "1.4.0";
version = "2.0.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
hash = "sha256-eNhoqY1pak96x0xCypvgHmgCYjw4CYH8ABtWjIZrD3w=";
hash = "sha256-dhFVVqJIX40oiHCcnG1166RsllXtfaO7MqM6ZNizjQQ=";
};
nativeBuildInputs = [
@ -26,11 +28,13 @@ mkDerivation rec {
pkg-config
lxqt-build-tools
qttools
wrapQtAppsHook
];
buildInputs = [
qtbase
libpulseaudio
qtbase
qtwayland
];
passthru.updateScript = gitUpdater { };