From cd687b02b8e3b3eb7e894b59bf3145942c7e85f5 Mon Sep 17 00:00:00 2001 From: Dmitriy Kholkin Date: Wed, 28 Jun 2023 01:10:57 +0300 Subject: [PATCH] temporary set webkitgtk from stable channel --- profiles/overlay.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/profiles/overlay.nix b/profiles/overlay.nix index d6ce16e..fb60c41 100644 --- a/profiles/overlay.nix +++ b/profiles/overlay.nix @@ -39,6 +39,11 @@ with lib; { extraPkgs = pkgs: with pkgs; [ mono libkrb5 keyutils ]; }; + # for some reason, it tries to compile webkit + webkitgtk = stable.webkitgtk; + webkitgtk_6_0 = stable.webkitgtk_6_0; + webkitgtk_4_1 = stable.webkitgtk_4_1; + nix = inputs.nix.packages.${system}.default.overrideAttrs (oa: { doInstallCheck = false; patches = [ ./nix/doas.patch ] ++ oa.patches or [ ];