From be99ff0da4648a7683d3490e11ac8a5a5545df4e Mon Sep 17 00:00:00 2001 From: maralorn Date: Mon, 1 May 2023 02:24:09 +0200 Subject: [PATCH] haskellPackages.scalendar: Fix eval --- pkgs/development/haskell-modules/configuration-nix.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index cd9abba308f5..a001be5035d2 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -1226,4 +1226,7 @@ self: super: builtins.intersectAttrs super { keid-render-basic = addBuildTool pkgs.glslang super.keid-render-basic; + # Disable checks to break dependency loop with SCalendar + scalendar = dontCheck super.scalendar; + }