hyprland-qtutils: fix build with Qt 6.10

This commit is contained in:
André Silva
2025-10-21 19:17:40 +01:00
parent d7cf4a6230
commit b73f82fed1

View File

@@ -2,6 +2,7 @@
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
cmake,
pkg-config,
hyprutils,
@@ -23,6 +24,15 @@ stdenv.mkDerivation (finalAttrs: {
hash = "sha256-bTYedtQFqqVBAh42scgX7+S3O6XKLnT6FTC6rpmyCCc=";
};
patches = [
# this should be removed in the next release
(fetchpatch {
name = "Fix build with Qt 6.10";
url = "https://github.com/hyprwm/hyprland-qtutils/commit/5ffdfc13ed03df1dae5084468d935f0a3f2c9a4c.patch";
hash = "sha256-5nVj4AFJpmazX9o9tQD6mzBW9KtRYov4yRbGpUwFcgc=";
})
];
nativeBuildInputs = [
cmake
pkg-config