lxqt.xdg-desktop-portal-lxqt: 0.5.0 -> 1.0.1

This commit is contained in:
José Romildo 2024-04-18 14:21:42 -03:00
parent ccf72c1c18
commit 98bbaf361d

View File

@ -1,5 +1,5 @@
{ lib { lib
, mkDerivation , stdenv
, fetchFromGitHub , fetchFromGitHub
, cmake , cmake
, kwindowsystem , kwindowsystem
@ -7,24 +7,26 @@
, libfm-qt , libfm-qt
, lxqt-qtplugin , lxqt-qtplugin
, menu-cache , menu-cache
, qtx11extras , qtbase
, wrapQtAppsHook
, gitUpdater , gitUpdater
, extraQtStyles ? [] , extraQtStyles ? []
}: }:
mkDerivation rec { stdenv.mkDerivation rec {
pname = "xdg-desktop-portal-lxqt"; pname = "xdg-desktop-portal-lxqt";
version = "0.5.0"; version = "1.0.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "lxqt"; owner = "lxqt";
repo = pname; repo = pname;
rev = version; rev = version;
hash = "sha256-6yfLjDK8g8cpeeyuFUEjERTLLn6h3meKjD2Eb7Cj9qY="; hash = "sha256-JSbFZ7R1Cu5VPPb50fRVSAsaE0LE15BbbHpvJZP6+w0=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
cmake cmake
wrapQtAppsHook
]; ];
buildInputs = [ buildInputs = [
@ -33,7 +35,7 @@ mkDerivation rec {
libfm-qt libfm-qt
lxqt-qtplugin lxqt-qtplugin
menu-cache menu-cache
qtx11extras qtbase
] ]
++ extraQtStyles; ++ extraQtStyles;