summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2018-07-10 17:09:55 +0200
committerPeter Simons <simons@cryp.to>2018-07-10 20:10:27 +0200
commitd3a7439722785246467e61ae2ea92b0f73b4d390 (patch)
treeacfc21676aed32fd65c6f4f9fdc01d8e3f66c619 /pkgs/development/haskell-modules/configuration-common.nix
parent7c35b1a006cd7f8f0ab1bafbf3e5c7abc610497e (diff)
downloadnixlib-d3a7439722785246467e61ae2ea92b0f73b4d390.tar
nixlib-d3a7439722785246467e61ae2ea92b0f73b4d390.tar.gz
nixlib-d3a7439722785246467e61ae2ea92b0f73b4d390.tar.bz2
nixlib-d3a7439722785246467e61ae2ea92b0f73b4d390.tar.lz
nixlib-d3a7439722785246467e61ae2ea92b0f73b4d390.tar.xz
nixlib-d3a7439722785246467e61ae2ea92b0f73b4d390.tar.zst
nixlib-d3a7439722785246467e61ae2ea92b0f73b4d390.zip
haskell-servant-swagger: disable tests until next release
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 71cbfc062303..d7fa55198632 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -950,9 +950,11 @@ self: super: {
   happy = if (pkgs.stdenv.hostPlatform.isAarch32 || pkgs.stdenv.hostPlatform.isAarch64) then dontCheck super.happy else super.happy; # Similar to https://ghc.haskell.org/trac/ghc/ticket/13062
   hashable = if (pkgs.stdenv.hostPlatform.isAarch32 || pkgs.stdenv.hostPlatform.isAarch64) then dontCheck super.hashable else super.hashable; # https://github.com/tibbe/hashable/issues/95
   servant-docs = if (pkgs.stdenv.hostPlatform.isAarch32 || pkgs.stdenv.hostPlatform.isAarch64) then dontCheck super.servant-docs else super.servant-docs;
-  servant-swagger = if (pkgs.stdenv.hostPlatform.isAarch32 || pkgs.stdenv.hostPlatform.isAarch64) then dontCheck super.servant-swagger else super.servant-swagger;
   swagger2 = if (pkgs.stdenv.hostPlatform.isAarch32 || pkgs.stdenv.hostPlatform.isAarch64) then dontHaddock (dontCheck super.swagger2) else super.swagger2;
 
+  # requires a release including https://github.com/haskell-servant/servant-swagger/commit/249530d9f85fe76dfb18b100542f75a27e6a3079
+  servant-swagger = dontCheck super.servant-swagger;
+
   # Tries to read a file it is not allowed to in the test suite
   load-env = dontCheck super.load-env;