summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-03-19 18:26:14 +0100
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-03-19 21:05:40 +0100
commit07e100d638c803d88c93c5067b68d67deca085c0 (patch)
treea1abd6a5ab4a35e78b28814d615dac0f97f9c67f /pkgs/development/haskell-modules/configuration-common.nix
parent72f247439bc5ef5834760e9b71235c7e103f25d1 (diff)
downloadnixpkgs-07e100d638c803d88c93c5067b68d67deca085c0.tar
nixpkgs-07e100d638c803d88c93c5067b68d67deca085c0.tar.gz
nixpkgs-07e100d638c803d88c93c5067b68d67deca085c0.tar.bz2
nixpkgs-07e100d638c803d88c93c5067b68d67deca085c0.tar.lz
nixpkgs-07e100d638c803d88c93c5067b68d67deca085c0.tar.xz
nixpkgs-07e100d638c803d88c93c5067b68d67deca085c0.tar.zst
nixpkgs-07e100d638c803d88c93c5067b68d67deca085c0.zip
haskellPackages.hgeometry{,-combinatorial}: unbreak
hegdehog-classes allows us to build these now, hgeometry-combinatorial
needs disabling of test suite since doctests cause some kind of run time
linking issue.
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 0bfe615c31b..78da06f2249 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1672,4 +1672,8 @@ self: super: {
   # https://github.com/jgm/pandoc/issues/7163
   pandoc = dontCheck super.pandoc;
 
+  # test suite triggers some kind of linking bug at runtime
+  # https://github.com/noinia/hgeometry/issues/132
+  hgeometry-combinatorial = dontCheck super.hgeometry-combinatorial;
+
 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super