summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-nix.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2018-07-10 11:49:13 +0200
committerPeter Simons <simons@cryp.to>2018-07-10 20:10:26 +0200
commit62239af3eed3d96c6ff258994bda0e4e52839ee8 (patch)
tree582e893e19526b4cd9aa49277f97cc15a79142b0 /pkgs/development/haskell-modules/configuration-nix.nix
parent1096d95c845bab76cbc4bb9f41d72d877f1e37e0 (diff)
downloadnixlib-62239af3eed3d96c6ff258994bda0e4e52839ee8.tar
nixlib-62239af3eed3d96c6ff258994bda0e4e52839ee8.tar.gz
nixlib-62239af3eed3d96c6ff258994bda0e4e52839ee8.tar.bz2
nixlib-62239af3eed3d96c6ff258994bda0e4e52839ee8.tar.lz
nixlib-62239af3eed3d96c6ff258994bda0e4e52839ee8.tar.xz
nixlib-62239af3eed3d96c6ff258994bda0e4e52839ee8.tar.zst
nixlib-62239af3eed3d96c6ff258994bda0e4e52839ee8.zip
haskell-manifolds: break infinite recursion in test suite dependencies
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-nix.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-nix.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix
index aaeb3bec4b3d..2e3a8e1c867d 100644
--- a/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/pkgs/development/haskell-modules/configuration-nix.nix
@@ -504,6 +504,7 @@ self: super: builtins.intersectAttrs super {
   # Break cyclic reference that results in an infinite recursion.
   partial-semigroup = dontCheck super.partial-semigroup;
   colour = dontCheck super.colour;
+  manifolds = super.manifolds.override { spatial-rotations = dontCheck self.spatial-rotations; };
 
   LDAP = dontCheck (overrideCabal super.LDAP (drv: {
     librarySystemDepends = drv.librarySystemDepends or [] ++ [ pkgs.cyrus_sasl.dev ];
@@ -512,4 +513,5 @@ self: super: builtins.intersectAttrs super {
   # Tests require a browser: https://github.com/ku-fpg/blank-canvas/issues/73
   blank-canvas = dontCheck super.blank-canvas;
   blank-canvas_0_6_2 = dontCheck super.blank-canvas_0_6_2;
+
 }