Disabling tests for haskellPackages.docker

Tests in `docker` package require `docker` command and working docker
server on build machine..
This commit is contained in:
Alexander V. Nikolaev 2016-01-02 17:16:42 +02:00
parent 581e9f0b32
commit 517e64727b

View File

@ -926,6 +926,10 @@ self: super: {
# https://github.com/sol/hpack/issues/53
hpack = dontCheck super.hpack;
# Tests require `docker` command in PATH
# Tests require running docker service :on localhost
docker = dontCheck super.docker;
# https://github.com/deech/fltkhs/issues/16
fltkhs = overrideCabal super.fltkhs (drv: {
libraryToolDepends = (drv.libraryToolDepends or []) ++ [pkgs.autoconf];