about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
diff options
context:
space:
mode:
authorsternenseemann <sternenseemann@systemli.org>2023-07-24 22:29:06 +0200
committersternenseemann <sternenseemann@systemli.org>2023-07-25 02:21:57 +0200
commit500b36d057ceaa7ad3e2e282958a44ed607b021f (patch)
treef2f5efe98541b3e12ea71a1c79a969825d17fbdb /pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
parent5c13e0de2686e8d9bc67586385b85869243fea19 (diff)
downloadnixlib-500b36d057ceaa7ad3e2e282958a44ed607b021f.tar
nixlib-500b36d057ceaa7ad3e2e282958a44ed607b021f.tar.gz
nixlib-500b36d057ceaa7ad3e2e282958a44ed607b021f.tar.bz2
nixlib-500b36d057ceaa7ad3e2e282958a44ed607b021f.tar.lz
nixlib-500b36d057ceaa7ad3e2e282958a44ed607b021f.tar.xz
nixlib-500b36d057ceaa7ad3e2e282958a44ed607b021f.tar.zst
nixlib-500b36d057ceaa7ad3e2e282958a44ed607b021f.zip
all-cabal-hashes: 2023-07-19T20:56:38Z -> 2023-07-24T19:28:29Z
The main motivation for this is that the latest versions of hspec-core
and hspec-expectations got out of sync due to an unlucky timing on the
hackage snapshot update. As a consequence, we weren't able to build
cabal-install in some package sets. Additionally, this brings a version
of futhark that can be built with the lsp version we ship.

This commit has been generated by maintainers/scripts/haskell/update-hackage.sh
and maintainers/scripts/haskell/regenerate-hackage-packages.nix.

Additional changes:

* Adapt to new xhtml version (still doesn't match the version normally
  shipped by the respective GHC as a core library).

* Adapt to new versions of hspec* and pandoc
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
index ad9b8e5a1d11..b6e46c04ebeb 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
@@ -45,7 +45,7 @@ self: super: {
   unix = null;
   # GHC only bundles the xhtml library if haddock is enabled, check if this is
   # still the case when updating: https://gitlab.haskell.org/ghc/ghc/-/blob/0198841877f6f04269d6050892b98b5c3807ce4c/ghc.mk#L463
-  xhtml = if self.ghc.hasHaddock or true then null else self.xhtml_3000_2_2_1;
+  xhtml = if self.ghc.hasHaddock or true then null else self.xhtml_3000_3_0_0;
   # These core package only exist for GHC >= 9.4. The best we can do is feign
   # their existence to callPackages, but their is no shim for lower GHC versions.
   system-cxx-std-lib = null;