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-19 14:00:55 +0200
committerGitHub <noreply@github.com>2018-07-19 14:00:55 +0200
commitb667721ce2c7ed658277f22f53b3f9a8ba35c466 (patch)
tree0b89f1a1f1a5a9b60d6671639e3c79aac81edac4 /pkgs/development/haskell-modules/configuration-nix.nix
parent4fd9ca3a51b2eefad9ed12e57483b69199d6497e (diff)
parentb53b5950fcffe32e62f2e4d290f4a2c3b6afab59 (diff)
downloadnixlib-b667721ce2c7ed658277f22f53b3f9a8ba35c466.tar
nixlib-b667721ce2c7ed658277f22f53b3f9a8ba35c466.tar.gz
nixlib-b667721ce2c7ed658277f22f53b3f9a8ba35c466.tar.bz2
nixlib-b667721ce2c7ed658277f22f53b3f9a8ba35c466.tar.lz
nixlib-b667721ce2c7ed658277f22f53b3f9a8ba35c466.tar.xz
nixlib-b667721ce2c7ed658277f22f53b3f9a8ba35c466.tar.zst
nixlib-b667721ce2c7ed658277f22f53b3f9a8ba35c466.zip
Merge pull request #43730 from srhb/dontcheck-spatial-rotation
haskellPackages.spatial-rotations: dontCheck for cyclic dependency
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-nix.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-nix.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix
index fe4321474ec1..4e62d4705063 100644
--- a/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/pkgs/development/haskell-modules/configuration-nix.nix
@@ -494,7 +494,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; };
+  spatial-rotations = dontCheck super.spatial-rotations;
 
   LDAP = dontCheck (overrideCabal super.LDAP (drv: {
     librarySystemDepends = drv.librarySystemDepends or [] ++ [ pkgs.cyrus_sasl.dev ];