From 358b2e106a381d25a8398bab0737bca027244012 Mon Sep 17 00:00:00 2001 From: ghbrown Date: Wed, 25 Mar 2026 13:48:56 -0500 Subject: [PATCH] komorebi: fix by moving to webkitgtk_4_1 use replace-fail Co-authored-by: Harinn --- pkgs/by-name/ko/komorebi/package.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/ko/komorebi/package.nix b/pkgs/by-name/ko/komorebi/package.nix index 9bc58263357d..8dba64355fe6 100644 --- a/pkgs/by-name/ko/komorebi/package.nix +++ b/pkgs/by-name/ko/komorebi/package.nix @@ -8,7 +8,7 @@ glib, gtk3, libgee, - # webkitgtk_4_0, + webkitgtk_4_1, clutter-gtk, clutter-gst, ninja, @@ -39,16 +39,17 @@ stdenv.mkDerivation (finalAttrs: { glib gtk3 libgee - # webkitgtk_4_0 + webkitgtk_4_1 clutter-gtk clutter-gst ]; + postPatch = '' + substituteInPlace meson.build --replace-fail "webkit2gtk-4.0" "webkit2gtk-4.1" + ''; passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; meta = { - # webkitgtk_4_0 was removed - broken = true; description = "Beautiful and customizable wallpaper manager for Linux"; homepage = "https://github.com/Komorebi-Fork/komorebi"; license = lib.licenses.gpl3Only;