summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-10-17 11:49:29 +0200
committerPeter Simons <simons@cryp.to>2017-10-17 20:35:29 +0200
commita7144523cf310cd34a873f18fc4f55e06acf8d9e (patch)
tree288986687b211dd96c33ff0a2eae0581e7af03f2 /pkgs
parente8733f5919c111cc1c9886814d23a885b211380c (diff)
downloadnixlib-a7144523cf310cd34a873f18fc4f55e06acf8d9e.tar
nixlib-a7144523cf310cd34a873f18fc4f55e06acf8d9e.tar.gz
nixlib-a7144523cf310cd34a873f18fc4f55e06acf8d9e.tar.bz2
nixlib-a7144523cf310cd34a873f18fc4f55e06acf8d9e.tar.lz
nixlib-a7144523cf310cd34a873f18fc4f55e06acf8d9e.tar.xz
nixlib-a7144523cf310cd34a873f18fc4f55e06acf8d9e.tar.zst
nixlib-a7144523cf310cd34a873f18fc4f55e06acf8d9e.zip
haskell-partial-semigroup: break cyclic reference that results in an infinite recursion
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/haskell-modules/configuration-nix.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix
index 1051c4e416f1..8146674a9435 100644
--- a/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/pkgs/development/haskell-modules/configuration-nix.nix
@@ -503,4 +503,8 @@ self: super: builtins.intersectAttrs super {
 
   # Written against the 6.X series of megaparsec
   htoml-megaparsec = super.htoml-megaparsec.override { megaparsec = self.megaparsec_6_2_0; };
+
+  # Break cyclic reference that results in an infinite recursion.
+  partial-semigroup = dontCheck super.partial-semigroup;
+
 }