From 4769e66c3d03cf8e7de80c3c70398389d3d2bf86 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Tue, 5 Oct 2021 01:02:23 +0200 Subject: [PATCH] haskellPackages.hakyll-images: assert dontCheck is still necessary With 1.1.1, hakyll-images should compile override-less again. --- pkgs/development/haskell-modules/configuration-common.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 0b4111cae243..71476a742664 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1144,8 +1144,9 @@ self: super: { hakyll-contrib-hyphenation = doJailbreak super.hakyll-contrib-hyphenation; # 2021-10-04: too strict upper bound on Hakyll hakyll-filestore = doJailbreak super.hakyll-filestore; - # https://github.com/LaurentRDC/hakyll-images/issues/10 - hakyll-images = dontCheck super.hakyll-images; + # https://github.com/LaurentRDC/hakyll-images/issues/10, fixed in 1.1.1 + hakyll-images = assert super.hakyll-images.version == "1.1.0"; + dontCheck super.hakyll-images; # 2020-06-22: NOTE: > 0.4.0 => rm Jailbreak: https://github.com/serokell/nixfmt/issues/71 nixfmt = doJailbreak super.nixfmt;