lxqt.obconf-qt: port to qt6

This commit is contained in:
José Romildo 2024-04-18 14:34:35 -03:00
parent 550334fd8a
commit 9d4f020897
1 changed files with 26 additions and 13 deletions

View File

@ -1,19 +1,23 @@
{ lib
, mkDerivation
, stdenv
, fetchFromGitHub
, fetchpatch
, cmake
, pkg-config
, pcre
, qtbase
, qttools
, qtx11extras
, xorg
, libSM
, libXdmcp
, libpthreadstubs
, lxqt-build-tools
, openbox
, pcre
, pkg-config
, qtbase
, qttools
, qtwayland
, wrapQtAppsHook
, gitUpdater
}:
mkDerivation rec {
stdenv.mkDerivation rec {
pname = "obconf-qt";
version = "0.16.4";
@ -29,16 +33,25 @@ mkDerivation rec {
pkg-config
lxqt-build-tools
qttools
wrapQtAppsHook
];
buildInputs = [
libSM
libXdmcp
libpthreadstubs
openbox
pcre
qtbase
qtx11extras
xorg.libpthreadstubs
xorg.libXdmcp
xorg.libSM
openbox
qtwayland
];
patches = [
(fetchpatch {
name = "obconf-qt.port-to-qt6";
url = "https://patch-diff.githubusercontent.com/raw/lxqt/obconf-qt/pull/230.patch";
hash = "sha256-XLt8+/4oMXeli07qTAGc73U9RD1fGYqxTX0QdhuXpII=";
})
];
passthru.updateScript = gitUpdater { };