Ошибка установки Google Cabal - BuilderResponse отсутствует

Предупреждение: новый пользователь Haskell здесь

Я пытаюсь установить CLI-версию Hoogle, чтобы следовать учебнику. Я вижу следующее на Haskell Platform 2013.2.0.0 для Mac OS X, 64 бит.

Другая информация: ~/ Библиотека /Haskell/bin находится на моем пути. alex и happy (и wai, где я думаю, что BuilderResponse фактически определен) установлены. Это не стенограмма из оригинальной установки (которая установила кучу вещей до сбоя), но это то, где я сейчас нахожусь. Для хихиканья я попробовал то же самое на Fedora 19 (X86_64), и она не работает аналогичным образом, поэтому я не думаю, что это зависит от Mac.

% cabal update
Downloading the latest package list from hackage.haskell.org
% cabal -V
cabal-install version 1.18.0.2
using version 1.18.1.2 of the Cabal library 
% cabal install hoogle
Resolving dependencies...
Configuring hoogle-4.2.23...
Building hoogle-4.2.23...
Preprocessing library hoogle-4.2.23...
[ 1 of 46] Compiling Paths_hoogle     ( dist/build/autogen/Paths_hoogle.hs, dist/build/Paths_hoogle.o )
[ 2 of 46] Compiling Data.TypeMap     ( src/Data/TypeMap.hs, dist/build/Data/TypeMap.o )
[ 3 of 46] Compiling Data.Heap        ( src/Data/Heap.hs, dist/build/Data/Heap.o )
[ 4 of 46] Compiling Hoogle.Score.Type ( src/Hoogle/Score/Type.hs, dist/build/Hoogle/Score/Type.o )
[ 5 of 46] Compiling Hoogle.Score.Scoring ( src/Hoogle/Score/Scoring.hs, dist/build/Hoogle/Score/Scoring.o )
[ 6 of 46] Compiling Hoogle.Score.All ( src/Hoogle/Score/All.hs, dist/build/Hoogle/Score/All.o )
[ 7 of 46] Compiling General.Base     ( src/General/Base.hs, dist/build/General/Base.o )
[ 8 of 46] Compiling General.System   ( src/General/System.hs, dist/build/General/System.o )
[ 9 of 46] Compiling Hoogle.Type.Language ( src/Hoogle/Type/Language.hs, dist/build/Hoogle/Type/Language.o )
[10 of 46] Compiling General.Util     ( src/General/Util.hs, dist/build/General/Util.o )
[11 of 46] Compiling General.Web      ( src/General/Web.hs, dist/build/General/Web.o )

src/General/Web.hs:44:19:
    Not in scope: data constructor `ResponseBuilder'
Failed to install hoogle-4.2.23
cabal: Error: some packages failed to install:
hoogle-4.2.23 failed during the building phase. The exception was:
ExitFailure 1

1 ответ

Решение

Похоже, Нил не обновил hoogle работать с последними wai пакет. Краткосрочное решение состоит в том, чтобы заставить cabal выбрать более старую версию оскорбительного пакета (wai):

cabal install hoogle --constraint='wai<2.0'

РЕДАКТИРОВАТЬ: Примечание wai 2.0 был выпущен всего 4 дня назад, и hackage не предупреждает разработчиков о поломке, поэтому это не удивительно.

Другие вопросы по тегам