summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2021-02-26 23:01:18 +0100
committerPeter Simons <simons@cryp.to>2021-02-26 23:01:18 +0100
commita533bbef706ce76649aa8b2703007752562b5cd3 (patch)
tree23ef6da100056dc1e72958c2e900957d08834ad9 /pkgs/development/haskell-modules/configuration-common.nix
parentf7aa0b4575809a31abd5af15abc783a10a16598d (diff)
downloadnixpkgs-a533bbef706ce76649aa8b2703007752562b5cd3.tar
nixpkgs-a533bbef706ce76649aa8b2703007752562b5cd3.tar.gz
nixpkgs-a533bbef706ce76649aa8b2703007752562b5cd3.tar.bz2
nixpkgs-a533bbef706ce76649aa8b2703007752562b5cd3.tar.lz
nixpkgs-a533bbef706ce76649aa8b2703007752562b5cd3.tar.xz
nixpkgs-a533bbef706ce76649aa8b2703007752562b5cd3.tar.zst
nixpkgs-a533bbef706ce76649aa8b2703007752562b5cd3.zip
haskell-brittany: disable the freakin' test suite
The test suite runs for ages even on fast machines.
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 8848203568d..4b63f03873b 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -972,6 +972,7 @@ self: super: {
 
   # The test suite runs for 20+ minutes on a very fast machine, which feels kinda disproportionate.
   prettyprinter = dontCheck super.prettyprinter;
+  brittany = doJailbreak (dontCheck super.brittany);  # Outdated upperbound on ghc-exactprint: https://github.com/lspitzner/brittany/issues/342
 
   # Fix with Cabal 2.2, https://github.com/guillaume-nargeot/hpc-coveralls/pull/73
   hpc-coveralls = appendPatch super.hpc-coveralls (pkgs.fetchpatch {
@@ -1412,10 +1413,6 @@ self: super: {
   # https://github.com/haskell/haskell-language-server/issues/611
   haskell-language-server = dontCheck super.haskell-language-server;
 
-  # 2020-02-26: Outdated upperbound on ghc-exactprint
-  # https://github.com/lspitzner/brittany/issues/342
-  brittany = doJailbreak super.brittany;
-
   # 2021-02-11: Jailbreaking because of syntax error on bound revision
   hls-explicit-imports-plugin = doJailbreak super.hls-explicit-imports-plugin;