lxqt.qps: 2.8.0 -> 2.9.0

This commit is contained in:
José Romildo 2024-04-18 14:21:42 -03:00
parent bedb7c8f44
commit 628a433889

View File

@ -1,32 +1,35 @@
{ lib { lib
, mkDerivation , stdenv
, fetchFromGitHub , fetchFromGitHub
, cmake , cmake
, kwindowsystem , kwindowsystem
, liblxqt , liblxqt
, libqtxdg , libqtxdg
, lxqt-build-tools , lxqt-build-tools
, gitUpdater
, qtbase , qtbase
, qtsvg
, qttools , qttools
, qtx11extras , qtwayland
, wrapQtAppsHook
, gitUpdater
}: }:
mkDerivation rec { stdenv.mkDerivation rec {
pname = "qps"; pname = "qps";
version = "2.8.0"; version = "2.9.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "lxqt"; owner = "lxqt";
repo = pname; repo = pname;
rev = version; rev = version;
hash = "sha256-Xr+61t6LzoXASHuXrE5ro3eWGxMSDCVnck49dCtiaww="; hash = "sha256-Jit1CdFZyhKOjNytTBH9T4NqqmhxoifXGgPUyVdzJ+4=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
cmake cmake
lxqt-build-tools lxqt-build-tools
qttools qttools
wrapQtAppsHook
]; ];
buildInputs = [ buildInputs = [
@ -34,7 +37,8 @@ mkDerivation rec {
liblxqt liblxqt
libqtxdg libqtxdg
qtbase qtbase
qtx11extras qtsvg
qtwayland
]; ];
passthru.updateScript = gitUpdater { }; passthru.updateScript = gitUpdater { };