summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorMalte Brandy <malte.brandy@maralorn.de>2020-06-24 00:21:29 +0200
committerMalte Brandy <malte.brandy@maralorn.de>2020-06-24 09:37:43 +0200
commit0bdd6f22b490e5d1996450516a2025d90a12c2a0 (patch)
tree855b3b09abdc114766d9b1f09943d8d4297af15b /pkgs/development/haskell-modules/configuration-common.nix
parentb930b2df8aa208e90e999751a4a2cc2980925e5f (diff)
downloadnixpkgs-0bdd6f22b490e5d1996450516a2025d90a12c2a0.tar
nixpkgs-0bdd6f22b490e5d1996450516a2025d90a12c2a0.tar.gz
nixpkgs-0bdd6f22b490e5d1996450516a2025d90a12c2a0.tar.bz2
nixpkgs-0bdd6f22b490e5d1996450516a2025d90a12c2a0.tar.lz
nixpkgs-0bdd6f22b490e5d1996450516a2025d90a12c2a0.tar.xz
nixpkgs-0bdd6f22b490e5d1996450516a2025d90a12c2a0.tar.zst
nixpkgs-0bdd6f22b490e5d1996450516a2025d90a12c2a0.zip
haskellPackages.stan: Fix build
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index a35e9f7c392..95cd6fc5154 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1576,4 +1576,12 @@ self: super: {
     extraPrefix = "";
   }));
 
+  # 2020-06-24: Jailbreaking because of restrictive test dep bounds
+  # Upstream issue: https://github.com/kowainik/trial/issues/62
+  trial = doJailbreak super.trial;
+
+  # 2020-06-24: Tests are broken in hackage distribution.
+  # See: https://github.com/kowainik/stan/issues/316
+  stan = dontCheck super.stan;
+
 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super