about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix
diff options
context:
space:
mode:
authorTristan Cacqueray <tdecacqu@redhat.com>2023-04-22 14:36:11 +0000
committerTristan Cacqueray <tdecacqu@redhat.com>2023-04-22 14:36:36 +0000
commitb14722944481d6ad05e4e020a96202e810fb1836 (patch)
tree30d67caf4730392e8bd89795e76c161fb90f0bf5 /pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix
parent86bb552bfbc90e544072b22d27486cc3bf258d01 (diff)
downloadnixlib-b14722944481d6ad05e4e020a96202e810fb1836.tar
nixlib-b14722944481d6ad05e4e020a96202e810fb1836.tar.gz
nixlib-b14722944481d6ad05e4e020a96202e810fb1836.tar.bz2
nixlib-b14722944481d6ad05e4e020a96202e810fb1836.tar.lz
nixlib-b14722944481d6ad05e4e020a96202e810fb1836.tar.xz
nixlib-b14722944481d6ad05e4e020a96202e810fb1836.tar.zst
nixlib-b14722944481d6ad05e4e020a96202e810fb1836.zip
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 c7e7ce62219c..debb0b0b062f 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix
@@ -122,6 +122,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;