about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDomen Kožar <domen@enlambda.com>2017-03-27 10:28:06 +0200
committerGitHub <noreply@github.com>2017-03-27 10:28:06 +0200
commit8d2ca14e1731dcd9592ac9e9d9f26bd2c62af54d (patch)
tree492c1671e1eaa885161cf2dcf95b9b327e3f76b7
parent1b95985b71ea56e88c571f57b3acd3907ae23c00 (diff)
parent39af068aba15cd63387f27437be52f9d63dc817a (diff)
downloadnixlib-8d2ca14e1731dcd9592ac9e9d9f26bd2c62af54d.tar
nixlib-8d2ca14e1731dcd9592ac9e9d9f26bd2c62af54d.tar.gz
nixlib-8d2ca14e1731dcd9592ac9e9d9f26bd2c62af54d.tar.bz2
nixlib-8d2ca14e1731dcd9592ac9e9d9f26bd2c62af54d.tar.lz
nixlib-8d2ca14e1731dcd9592ac9e9d9f26bd2c62af54d.tar.xz
nixlib-8d2ca14e1731dcd9592ac9e9d9f26bd2c62af54d.tar.zst
nixlib-8d2ca14e1731dcd9592ac9e9d9f26bd2c62af54d.zip
Merge pull request #24379 from roberth/mysql-haskell-dontcheck
mysql-haskell: dontCheck because check requires running server
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index b2d678edada9..fe11b9901564 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -55,6 +55,7 @@ self: super: {
 
   # check requires mysql server
   mysql-simple = dontCheck super.mysql-simple;
+  mysql-haskell = dontCheck super.mysql-haskell;
 
   # Link the proper version.
   zeromq4-haskell = super.zeromq4-haskell.override { zeromq = pkgs.zeromq4; };