about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2019-03-16 13:47:33 +0100
committerGitHub <noreply@github.com>2019-03-16 13:47:33 +0100
commit17c62c98d3f393db0c1636fe9d86c170b70251a1 (patch)
treeb446b51d90e5e0ea51f74044f10eb7c630efb605 /pkgs/development/haskell-modules
parent0610d30e5b9920787c0b53a271b0cd1fde66aeb2 (diff)
parentb82150c8c2d7d73ce8454e5fac432fa38c83f9ea (diff)
downloadnixlib-17c62c98d3f393db0c1636fe9d86c170b70251a1.tar
nixlib-17c62c98d3f393db0c1636fe9d86c170b70251a1.tar.gz
nixlib-17c62c98d3f393db0c1636fe9d86c170b70251a1.tar.bz2
nixlib-17c62c98d3f393db0c1636fe9d86c170b70251a1.tar.lz
nixlib-17c62c98d3f393db0c1636fe9d86c170b70251a1.tar.xz
nixlib-17c62c98d3f393db0c1636fe9d86c170b70251a1.tar.zst
nixlib-17c62c98d3f393db0c1636fe9d86c170b70251a1.zip
Merge pull request #57587 from erictapen/hakyll-pandoc-bump
haskellPackages.hakyll: bump pandoc dependency to 2.7
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 9b89787531cc..e3677aa02ca3 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -165,8 +165,10 @@ self: super: {
     then dontCheck (overrideCabal super.hakyll (drv: {
       testToolDepends = [];
     }))
-    # https://github.com/jaspervdj/hakyll/issues/491
-    else dontCheck super.hakyll;
+    else appendPatch super.hakyll (pkgs.fetchpatch {
+      url = "https://github.com/jaspervdj/hakyll/pull/691/commits/a44ad37cd15310812e78f7dab58d6d460451f20c.patch";
+      sha256 = "13xpznm19rjp51ds165ll9ahyps1r4131c77b8r7gpjd6i505832";
+    });
 
   double-conversion = if !pkgs.stdenv.isDarwin
     then super.double-conversion