cabal-install is a package manager and dependency resolver for building and installing Haskell libraries.

learn more… | top users | synonyms

2
votes
0answers
26 views

Haskell SDL-mixer compilation error

I am trying to install the SDL-mixer haskell package by using "cabal install sdl-mixer". When I do so, it gives the error Resolving dependencies... [1 of 1] Compiling Main ( ...
1
vote
1answer
96 views

Anyone having trouble install Control.Pipe?

I have the current version of cabal and running cabal install Pipe gave me no issues. But I tried these two imports: import Control.Proxy import Control.Pipe But I'm getting this error message: ...
3
votes
1answer
42 views

cabal-install does not retain the version for happy

I've trying to do cabal install hoogle but there is a hickup with the haskell-src-exts-1.13.5 dependency: Configuring haskell-src-exts-1.13.5... setup: The program happy version >=1.17 is required ...
1
vote
1answer
70 views

managing two libraries with cabal that depend on each other

I've got the following question: I've got two Haskell libraries that depend on each other, and both libraries are managed by cabal. The corresponding cabal files look like this: Library 1: name: ...
5
votes
1answer
63 views

Haskell - Packaging cabal package with custom preprocessors

I've implemented a custom preprocessor which creates *.hs files form *.tpl files. It is specified in Setup.hs by using a Build-Type: Custom. Everything works fine, but I can't create tar.gz package ...
1
vote
1answer
94 views

Trouble with installing cabal on mac

wget http://www.haskell.org/cabal/release/cabal-install-0.14.0/cabal-install-0.14.0.tar.gz tar -xvzf cabal-install-0.14.0.tar.gz cd cabal-install-0.14.0 sh bootstrap.sh There are the commands that I ...
0
votes
0answers
8 views

cabal: installing documentation under hsenv

I have a hsenv sandbox for a project, and I can't get cabal install to install the documentation for the libraries. The following: cabal install --enable-documentation $package installs the ...
3
votes
2answers
84 views

What does cabal's “Warning: Falling back to topdown solver for GHC < 7.” mean?

When building with cabal on GHC6 it warns: Warning: Falling back to topdown solver for GHC < 7. What's the topdown solver and what is the meaning of the warning? How does it affect me?
0
votes
1answer
53 views

cabal-install “Couldn't read cabal file …”

I just made a fresh haskell-platform install on a Linux Mint 12, via apt-get. Everytime I try to install some hackage package with cabal-install, I get a: couldn't read caba file xxxx.cabal where ...
1
vote
0answers
67 views

cabal install cabal-install fails due “missing” installed-package

I just updated the haskel-plataform did a cabal update and was informed there is a new version of cabal-install that I should update to. So I do a cabal install cabal-install and get: cabal: The ...
1
vote
0answers
66 views

Why isn't cabal-install upgrading itself? [duplicate]

When I do a cabal update I get the following output: Downloading the latest package list from hackage.haskell.org Note: there is a new version of cabal-install available. upgrade, run: cabal install ...
1
vote
0answers
23 views

updating cabal-install, but version is not changed

Currently I am using cabal-install 1.16.0 I tried to update cabal-install because someone told me that newer version of ghc (7.6.1) is available. Installation result was quite successful except for ...
1
vote
1answer
54 views

In Haskell, how do I install the encoding package on Windows?

I'm a total newb with haskell and I'm making a trivial project but I needed to run cabal install encoding. But, when I did, it gave me this error: Configuring encoding-0.6.7.2... setup.exe: Missing ...
1
vote
0answers
99 views

Installing scion in emacs

I am looking to install the scion for my emacs. However as the README suggests, when I run cabal install the following error pops up: Resolving dependencies... In order, the following will be ...
6
votes
0answers
155 views

Haskell Cabal QuickCheck Integration

I've been trying to use cabal-install as a way to build and, more importantly, test my haskell projects, a bit alike to the way Maven is used in Java projects, mainly because it seems to be a good ...
0
votes
1answer
64 views

cabal install trouble with fay

I am trying to run cabal install fay fay-base. However, I get the following error: src/Test/CommandLine.hs:18:9: Dynamic linking required, but this is a non-standard build (eg. prof). You ...
0
votes
0answers
166 views

cabal install fails when installing shakespeare-css and derive with Haskell errors

I am very new to the Haskell platform and I'm having much more trouble than I had wished for with it. I think I'm getting closer since everything goes well until cabal tries to install ...
0
votes
1answer
94 views

How to set up .cabal test-suite when test file and the file under test is in different folder

I am trying to structure my simple project in a way that it's easy for me to develop in the future. Basically I've used cabal init to get the basic stuff, then I created a src folder, inside that i ...
0
votes
0answers
57 views

Cabal doesn't update binary symlinks

I'm using OS X 10.8.2 with Haskell Platform 2012.4.0.0. When updating packages with cabal install, the binary symlinks don't get updated to point to the new binary versions. I must delete the symlink ...
4
votes
1answer
74 views

What exactly does cabal install --avoid-reinstalls do?

I've found --avoid-reinstalls makes packages build where otherwise cabal fails. What exactly is it doing? Doesn't cabal already try to avoid reinstalls, or shouldn't it?
1
vote
1answer
153 views

Wxhaskell - wxcore fails due to building phase (g++ error)

I'm trying to build wxhaskell, and it seems there is lots of trouble, I could figure out what to do in some cases, but I'm stuck now. I'm using wxwidgets-2.8 / wxhaskell-0.11.1.2, and the error that ...
1
vote
2answers
695 views

Haskell - can't find package

I have a package installed via cabal: Data.Vector But when I attempt to compile a program that has import Data.Vector in it: Drews-MacBook-Pro:Blokus-AI drewgross$ ghc --make -O2 -prof -auto-all ...
0
votes
0answers
66 views

Using cabal for a project : the haq example

In the webpage Structure of a simple project there are instructions on how to use cabal for a toy project called "haq". I followed the instructions specified in that webpage (omitting the "2.3 Stick ...
1
vote
1answer
180 views

Install Cabal-dev on windows 7

I'm trying to install Cabal-dev on windows 7. I've managed to get past the problem with not being able to build network by using this: cabal install --constraint="network installed" cabal-dev ...
0
votes
1answer
207 views

Cabal hell to install cabal-nirvana?

I'm trying to install cabal-nirvana on OSX 10.7.5, but I get the following output: cabal install cabal-nirvana Resolving dependencies... Downloading cabal-nirvana-0.2.2... Configuring ...
6
votes
1answer
280 views

Why wasn't Cabal made a full package manager? [closed]

(Before I start: I'm going to use Cabal for Everything that has Cabal in its name and has something to do with Haskell.) Having had the usual "you need to update X to install Y, but this will break ...
1
vote
1answer
282 views

ghc-mod fails to install

I've just done a fresh install of Arch Linux to a virtual machine and installed GHC (7.6.1), and cabal-install is version 1.16.0-2 I'm trying to get an environment setup for haskell coding, including ...
3
votes
1answer
87 views

Cabal: Blocking base packages from installing

I'm using cabal-install 1.14.0 on Ubuntu 12.04, and ghc 7.4.1. Some cabal packages I try to install are pulling in directory-1.2.0.0, which requires ghc 7.6. Is there a way to configure cabal to not ...
1
vote
1answer
185 views

Cannot install network-2.4.0.1 with cabal-install 1.11.0

I can't install a bunch of different things with cabal because they depend on network-2.4.0.1 which fails to install with: Preprocessing library network-2.4.0.1... Socket.hsc: In function ‘main’: ...
1
vote
1answer
1k views

cabal cannot be updated and “some packages failed to install” [closed]

I am rather new to the Haskell world and I would like to use the package HaskellCharts. The way to go seems to be using cabal, so I installed cabal-install from my repository (I'm on Ubuntu 10.04.4 ...
0
votes
0answers
61 views

Lost global Contents of haddock

I just noticed that my global Contents of the haddock documentation of modules ( file:///home/marcot/.cabal/share/doc/index.html ) lost most of the modules. My workflow is fairly straightforward, but ...
0
votes
0answers
291 views

Building the “text” library fails on OS X Mountain Lion

I'm trying to build the text library on OS X 10.8 (Mountain Lion) but I get the following erros: ehamberg@lucy:/tmp/text-0.11.2.2 ☺ $ cabal configure Resolving dependencies... Configuring ...
0
votes
1answer
92 views

(building cabal-install from git) Why Module `Distribution.Compat.Exception' does not export `SomeException'

I'm trying to compile hackport ( here is sources: https://github.com/Nensha/hackport ) with newer cabal but always getting the same Error: [61 of 91] Compiling Distribution.Client.Types ( ...
3
votes
1answer
56 views

How to get cabal-install Distribution.Client.IndexUtils

I were trying to add cabal-install and Cabal-install to .cabal file but. At least the following dependencies are missing: Cabal-install -any Why there is no cabal-install? So how can I get ...
1
vote
1answer
598 views

Cannot install cabal-dev in windows

Yeah... I give up: PS D:\Projects\yesod\webapp> cabal install cabal-dev --force-reinstalls Resolving dependencies... Warning: The following packages are likely to be broken by the reinstalls: ...
3
votes
1answer
327 views

installing darcsden

After making cabal install of the darcsden code I get this message: cabal: The following packages are likely to be broken by the reinstalls: bin-package-db-0.0.0.0 ghc-7.4.1 Use --force-reinstalls if ...
1
vote
1answer
253 views

cabal install fails when installing pango

Cabal fails when trying to install pango, complaining that it cant find pkg-config. peauters:~ $ sudo cabal install pango -v Password: Reading available packages... Choosing modular solver. Resolving ...
0
votes
0answers
76 views

Trying to install the encoding package (Data.Encoding)

The Glorious Glasgow Haskell Compilation System, version 7.0.4` using version 1.10.2.0 of the Cabal library $cabal install encoding yields `Resolving dependencies... <command line>: cannot ...
2
votes
1answer
545 views

Cabal install reactive-banana-wx on ubuntu 12.04

I just did a fresh install of Ubuntu 12.04 pulling down haskell-platform from apt-get and when i try to install reactive-banana-wx i get: cabal install reactive-banana-wx Resolving dependencies... In ...
3
votes
1answer
188 views

Install of semigroups fails with cabal

I would like to install Snap, but i'm new to Haskell and its platform. I use cabal to install Snap and it fails to install semigroups : % cabal install snap Resolving dependencies... Configuring ...
3
votes
1answer
400 views

What does Cabal ExitFailure 127 mean?

When I try to install the "encoding" library, I get this failure, but I can't find any documentation to tell me what it means: $ sudo cabal install encoding --global Resolving dependencies... cabal: ...
5
votes
1answer
147 views

How can I tell Cabal which dependency to use?

I'm trying to get Cabal to install the haskell-src-meta package, and I'm having difficulty with the template-haskell dependency. The dependencies for haskell-src-meta include both template-haskell ...
0
votes
1answer
175 views

Cabal fails with proxy with authentication

This is a well-known bug that cabal can not handle proxies in format http://user:password@host:port format. On Haskell mailing list, someone suggested a patch to overcome this but that patch is now ...
6
votes
0answers
473 views

Haskell Cabal: “package indirectly depends on multiple versions of the same package”

After clearing out all of my cabal installed packages, I ran this following session: $ cabal update Downloading the latest package list from hackage.haskell.org james@bast:~/.cabal/packages$ cabal ...
6
votes
1answer
231 views

Error in cabal-installing hspec

I'm trying to install hspec, but I'm getting this: $ cabal install hspec Resolving dependencies... ...
1
vote
1answer
199 views

Reinstall behavior of cabal-dev

The latest cabal-install that I've been using (0.13.3, from the darcs repo) is nice; it lets you know when you might break your GHC installation with reinstalls. What I want to know is this: suppose a ...
1
vote
0answers
73 views

How to Iterate Over Modules in Cabal Package

What's the best way to iterate over all the modules (files) in a given package? Concretely, suppose I have an executable called "runThis" a cabal package P with files F1.hs, F2.hs, ..., Fn.hs ...
7
votes
0answers
181 views

Reinstall all depending packages with cabal manually [duplicate]

Possible Duplicate: Cabal not installing dependencies when needing profiling libraries? Here is the situation. I want to install\reinstall package A with some new options or flags (for ...
2
votes
2answers
459 views

How do you install packages/libraries without Cabal or Cabal-Install?

I'm trying to set up Haskell from scratch, on Ubuntu 11.04, without using the outdated Debian repo or Haskell-Platform. I've installed GHC-7.0.4 from source with no problem, and now need to install ...
5
votes
1answer
753 views

Cabal Update and Package Installation Errors

When I do cabal install criterion I get the following error regarding the package vector-algorithms Warning: The package list for 'hackage.haskell.org' is 16 days old. Run 'cabal update' to get the ...

1 2