summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMalte Brandy <malte.brandy@maralorn.de>2021-05-25 13:00:46 +0200
committerMalte Brandy <malte.brandy@maralorn.de>2021-05-25 13:00:46 +0200
commita1b16d9782bb7e114d587f48111ca217aca78a95 (patch)
tree694a96610d2157285837af1544f1f654a194cd04 /pkgs
parent66722bc2f1407a000be98b448f199dbfed38c816 (diff)
downloadnixpkgs-a1b16d9782bb7e114d587f48111ca217aca78a95.tar
nixpkgs-a1b16d9782bb7e114d587f48111ca217aca78a95.tar.gz
nixpkgs-a1b16d9782bb7e114d587f48111ca217aca78a95.tar.bz2
nixpkgs-a1b16d9782bb7e114d587f48111ca217aca78a95.tar.lz
nixpkgs-a1b16d9782bb7e114d587f48111ca217aca78a95.tar.xz
nixpkgs-a1b16d9782bb7e114d587f48111ca217aca78a95.tar.zst
nixpkgs-a1b16d9782bb7e114d587f48111ca217aca78a95.zip
haskellPackages.hls-class-plugin: Disable tests on darwin
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/haskell-modules/configuration-darwin.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-darwin.nix b/pkgs/development/haskell-modules/configuration-darwin.nix
index 4f7a6a131d7..7e02a6653c7 100644
--- a/pkgs/development/haskell-modules/configuration-darwin.nix
+++ b/pkgs/development/haskell-modules/configuration-darwin.nix
@@ -168,4 +168,7 @@ self: super: {
     '' + (drv.postPatch or "");
   });
 
+  # 2021-05-25: Tests fail and I have no way to debug them.
+  hls-class-plugin = dontCheck super.hls-class-plugin;
+
 }