lxqt.screengrab: 2.7.0 -> 2.8.0

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

View File

@ -1,29 +1,30 @@
{ lib { lib
, mkDerivation , stdenv
, fetchFromGitHub , fetchFromGitHub
, cmake , cmake
, pkg-config
, qtbase
, qttools
, qtx11extras
, qtsvg
, kwindowsystem
, libqtxdg
, perl
, xorg
, autoPatchelfHook , autoPatchelfHook
, gitUpdater , gitUpdater
, kwindowsystem
, libXdmcp
, libpthreadstubs
, libqtxdg
, perl
, pkg-config
, qtbase
, qtsvg
, qttools
, wrapQtAppsHook
}: }:
mkDerivation rec { stdenv.mkDerivation rec {
pname = "screengrab"; pname = "screengrab";
version = "2.7.0"; version = "2.8.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "lxqt"; owner = "lxqt";
repo = pname; repo = pname;
rev = version; rev = version;
hash = "sha256-mmN3BQum7X0GWTUYauEN2mAo3GWdmtkIl2i84g5cp78="; hash = "sha256-PMe2NyIoc12n4l/oWPi3GL6pemuHyxL2HFBLTIyD690=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -32,16 +33,16 @@ mkDerivation rec {
perl # needed by LXQtTranslateDesktop.cmake perl # needed by LXQtTranslateDesktop.cmake
qttools qttools
autoPatchelfHook # fix libuploader.so and libextedit.so not found autoPatchelfHook # fix libuploader.so and libextedit.so not found
wrapQtAppsHook
]; ];
buildInputs = [ buildInputs = [
qtbase
qtx11extras
qtsvg
kwindowsystem kwindowsystem
libXdmcp
libpthreadstubs
libqtxdg libqtxdg
xorg.libpthreadstubs qtbase
xorg.libXdmcp qtsvg
]; ];
passthru.updateScript = gitUpdater { }; passthru.updateScript = gitUpdater { };