blur-effect: fix cmake-4 build (#457469)

This commit is contained in:
Yohann Boniface
2025-11-02 01:19:35 +00:00
committed by GitHub

View File

@@ -2,6 +2,7 @@
lib, lib,
stdenv, stdenv,
fetchFromGitHub, fetchFromGitHub,
fetchpatch,
pkg-config, pkg-config,
cmake, cmake,
gdk-pixbuf, gdk-pixbuf,
@@ -20,6 +21,16 @@ stdenv.mkDerivation rec {
sha256 = "0cjw7iz0p7x1bi4vmwrivfidry5wlkgfgdl9wly88cm3z9ib98jj"; sha256 = "0cjw7iz0p7x1bi4vmwrivfidry5wlkgfgdl9wly88cm3z9ib98jj";
}; };
patches = [
# Pull cmake-4 fix:
# https://github.com/sonald/blur-effect/pull/7
(fetchpatch {
name = "cmake-4.patch";
url = "https://github.com/sonald/blur-effect/commit/76322ad8bd0e653726a6791eb8ebcc829cbb1b38.patch?full_index=1";
hash = "sha256-f0PBhfdrcLCZBzYx+j8+qIG9boW3S4CSyz+bS9vFKRc=";
})
];
nativeBuildInputs = [ nativeBuildInputs = [
pkg-config pkg-config
cmake cmake