lxqt.lxqt-runner: 1.4.0 -> 2.0.0

This commit is contained in:
José Romildo 2024-04-18 14:21:41 -03:00
parent c1b470acde
commit f4456834bf

View File

@ -1,32 +1,34 @@
{ lib { lib
, mkDerivation , stdenv
, fetchFromGitHub , fetchFromGitHub
, cmake , cmake
, pkg-config
, lxqt-build-tools
, qtbase
, qttools
, qtsvg
, kwindowsystem , kwindowsystem
, layer-shell-qt
, liblxqt , liblxqt
, libqtxdg , libqtxdg
, lxqt-build-tools
, lxqt-globalkeys , lxqt-globalkeys
, qtx11extras
, menu-cache , menu-cache
, muparser , muparser
, pcre , pcre
, pkg-config
, qtbase
, qtsvg
, qttools
, qtwayland
, wrapQtAppsHook
, gitUpdater , gitUpdater
}: }:
mkDerivation rec { stdenv.mkDerivation rec {
pname = "lxqt-runner"; pname = "lxqt-runner";
version = "1.4.0"; version = "2.0.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "lxqt"; owner = "lxqt";
repo = pname; repo = pname;
rev = version; rev = version;
hash = "sha256-NGytLQ2D5t1UdMGZoeHxHaXPwbRFDx+11ocjImXqZBU="; hash = "sha256-r9rz6rJX60+1/+Wd5APobyZRioXzD1xveFIMToTvpXQ=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -34,19 +36,21 @@ mkDerivation rec {
pkg-config pkg-config
lxqt-build-tools lxqt-build-tools
qttools qttools
wrapQtAppsHook
]; ];
buildInputs = [ buildInputs = [
qtbase
qtsvg
qtx11extras
kwindowsystem kwindowsystem
layer-shell-qt
liblxqt liblxqt
libqtxdg libqtxdg
lxqt-globalkeys lxqt-globalkeys
menu-cache menu-cache
muparser muparser
pcre pcre
qtbase
qtsvg
qtwayland
]; ];
passthru.updateScript = gitUpdater { }; passthru.updateScript = gitUpdater { };