about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix
diff options
context:
space:
mode:
authormaralorn <mail@maralorn.de>2023-04-22 16:54:22 +0200
committerGitHub <noreply@github.com>2023-04-22 16:54:22 +0200
commit7f34e9543f5249d27339993a066d201f48cef8cd (patch)
tree3db7c3d9aceca200de0a1cfc696632a2363eab6f /pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix
parent306bf7b9ceec0279eeb61a4e714f841628fdb634 (diff)
parentb14722944481d6ad05e4e020a96202e810fb1836 (diff)
downloadnixlib-7f34e9543f5249d27339993a066d201f48cef8cd.tar
nixlib-7f34e9543f5249d27339993a066d201f48cef8cd.tar.gz
nixlib-7f34e9543f5249d27339993a066d201f48cef8cd.tar.bz2
nixlib-7f34e9543f5249d27339993a066d201f48cef8cd.tar.lz
nixlib-7f34e9543f5249d27339993a066d201f48cef8cd.tar.xz
nixlib-7f34e9543f5249d27339993a066d201f48cef8cd.tar.zst
nixlib-7f34e9543f5249d27339993a066d201f48cef8cd.zip
Merge pull request #227625 from TristanCacqueray/ghc96-hourglass
haskell.packages.ghc96.hourglass: pull test fix
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix
index 743510d81987..f262f324c030 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix
@@ -125,6 +125,18 @@ self: super: {
       })
     ] (super.foundation);
 
+  # Add support for time 1.10
+  # https://github.com/vincenthz/hs-hourglass/pull/56
+  hourglass = appendPatches [
+      (pkgs.fetchpatch {
+        name = "hourglass-pr-56.patch";
+        url =
+          "https://github.com/vincenthz/hs-hourglass/commit/cfc2a4b01f9993b1b51432f0a95fa6730d9a558a.patch";
+        sha256 = "sha256-gntZf7RkaR4qzrhjrXSC69jE44SknPDBmfs4z9rVa5Q=";
+      })
+    ] (super.hourglass);
+
+
   # Test suite doesn't compile with base-4.18 / GHC 9.6
   # https://github.com/dreixel/syb/issues/40
   syb = dontCheck super.syb;