Cabal is a package distribution and build system for the Haskell programming language.
1
vote
1answer
97 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:
...
4
votes
1answer
66 views
Conditional Compilation inside Literate Haskell
I have a literate haskell file and want to use conditional compilation. I use the bird style of literate programming. The following code does not work.
> #if MIN_VERSION_base(4,6,0)
> import ...
3
votes
0answers
60 views
Cabal “Data Files” Not Being Copied
I'm trying to use the "data-files" mechanism, and stuff works fine except that the
relevant files are not copied into the share/ directory. e.g. my .cabal file looks like:
name: ...
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: ...
0
votes
0answers
20 views
Agda install error Windows 7 64 bit [closed]
I am trying to install Agda on my Windows 7 Machine from http://wiki.portal.chalmers.se/agda/pmwiki.php?n=Main.Windows (current version Agda-2.3.0.1-20121108-setup.exe). I have been using Haskell ...
15
votes
1answer
156 views
Could cabal notice about unused package in dependencies?
For given cabal project how could unused dependencies packages be retrieved?
Is there a way to get something like warning during cabal install process if there is a package mentioned in project ...
2
votes
0answers
43 views
Linking a library with GHC and Cabal in Mac OS X
I do have a library that uses the Java Native Interface (which is available as a library libjvm) via the Haskell FFI. Therefor some gluecode is in a c file, the functions are imported via the FFI and ...
5
votes
1answer
50 views
yesod-bin is missing an (unknown) dependency?
How can install the yesod executable?
> cabal install yesod-bin
Resolving dependencies...
cabal: Could not resolve dependencies:
trying: yesod-bin-1.2.0
so it does not tell me actual dependency ...
6
votes
2answers
92 views
Haskell package missing c library
I'm having trouble building the hmatrix library on OS X Lion. Looking at the .cabal file, it requires the gsl library, so I installed it with macports. The .a files are in /opt/local/lib and the .h ...
2
votes
1answer
41 views
Architecture mismatch on repa-devil package on OS X
I'm having trouble using the repa-devil package, which I installed from cabal with cabal install repa-devil.
For example, here is part of my ghci transcript:
Prelude Data.Array.Repa.IO.DevIL> ...
5
votes
1answer
83 views
How to pin dependencies in Haskell apps
I'm writing a todo.sh in Haskell now, to understand better how IO monads work, and I'm going to use cmdArgs to parse input, like argparse do in Python.
My question is, how can I pin the dependency of ...
5
votes
1answer
64 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 ...
2
votes
2answers
53 views
Unable to install Hake via cabal install
I'm trying to install hake via cabal install.
Firstly - although the lastest package available is 1.3.7, cabal tries to install 1.2
Apart from that:
~ % cabal install hake-1.2
Resolving ...
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 ...
1
vote
1answer
39 views
cabal test not finding module
I'm trying to get cabal test to run my HUnit test, without much luck. The problem is that it can't find one of my test modules — how do I fix this?
cabal configure --enable-tests && cabal ...
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 ...
3
votes
1answer
121 views
Haskell SDL: Can't find mingw32.dll
I finally made it to install Haskell SDL bindings on Windows. Using this:
> $env:Path += ";C:\SDL;C:\SDL\bin;C:\SDL\include;C:\SDL\lib"
> cabal install SDL --extra-include-dirs="C:\SDL\include" ...
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 ...
3
votes
1answer
33 views
Importing modules from a dependency package's Test-Suite
I'd like to write some tests for my package which depends on a package foo, and I'd like to import some code written for foo's test-suite, but which isn't exported or exposed in foo.cabal.
In other ...
2
votes
1answer
61 views
cabal: how to add text file as a build dependency
I use a simple text file to generate some code with TemplateHaskell and runIO.
...
curdir <- runIO $ getCurrentDirectory
addDependentFile $ curdir ++ "/spec.txt"
bs <- runIO $ BS.readFile ...
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 ...
0
votes
1answer
69 views
trouble upgrading cabal-install
I'm having trouble upgrading cabal to version 1.17.0. My current version of cabal is:
edechter@helmholtz cabal-install (master) $ cabal --version
cabal-install version 1.16.0.2
using version ...
0
votes
1answer
16 views
cabal test does not print executable output
I have a cabal package for which I have a test-suite set up using the exitcode-stdio-1.0 type, like so:
When I run it using cabal test, cabal does not print the standard output/standard error of the ...
1
vote
2answers
139 views
cabal install pcap windows 64bit
I cannot install pcap package under Windows 7 (64 bit). Anybody know how to do that?
Error message if I run "cabal install pcap":
cabal.exe: Missing dependency on a foreign library:
Missing (or ...
1
vote
1answer
72 views
New to haskell, cabal is not found
I try to run cabal from cmd on Windows however it isn't recognized. I have modified my PATH variable to include the bin directory of my haskell install however that does not work. Any ideas?
4
votes
1answer
65 views
Need some explanation about Distribution.TestSuite
I’m looking for some examples or well-documented readings that describe how to use the Distribution.TestSuite. The current haddock documentation is quite poor and so is the userguide. I want to write ...
2
votes
1answer
72 views
Enable Unicode Syntax in cabal
I want to enabled Unicode syntax(UnicodeSyntax extension, base-unicode-symbols package and the containers-unicode-symbols). I don't want to enable per file, that is far too tedious.
How do I enable ...
2
votes
2answers
111 views
How to configure cabal in Windows 7?
I have installed Haskell Platform 2012 in Windows 7. I write in the console cabal update and I take a message that there is a new version of cabal. I write cabal install cabal-install . After ...
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 ...
2
votes
0answers
53 views
ByteCodeLink error with GHCi and C file
When I run my file using a foreign import for a C function I made, I get this error.
ByteCodeLink: can't find label
During interactive linking, GHCi couldn't find the following symbol:
...
45
votes
1answer
867 views
Independent subset of cabal packages set
Given a set of cabal packages, is there a way to automatically calculate subset of independent packages? In other words, subset of packages that will be sufficient to install them all?
For ...
23
votes
1answer
218 views
Eliminating repetition in cabal files
I often have similar properties in many stanzas of my .cabal files. E.g.
Library x
...
ghc-options:
-O2 -Wall -fno-warn-missing-signatures -fwarn-incomplete-patterns
...
2
votes
2answers
127 views
Fail to install cairo haskell bindings on windows
I am trying to install cairo-0.12.4 Haskell package on Windows 7. I first downloaded and unpacked Gtk+2 and added its bin subdir to PATH. I then tried to run cabal with extra libs and includes:
cabal ...
5
votes
2answers
226 views
vim-haskellmode and hsenv
I've been using hsenv (with great success!)
to deal with the usual cabal dependency issues.
Its terrific, but there is one glitch I can't get around: how to persuade the
(also excellent!) ...
1
vote
2answers
37 views
Different versions of the same program installed. How do I give precedence to a specific version?
On Ubuntu, I have installed Pandoc using first apt-get and then using the haskell cabal package manager. How can I make the pandoc terminal command refer to the newer pandoc? I have added the cabal ...
0
votes
1answer
94 views
Cabal dependency conflict when installing yesod
I am trying to install the yesod web framework.
When I run cabal install yesod-platform, I get a dependency conflict:
cabal: dependencies conflict: ghc-7.0.4 requires array ==0.3.0.2 however
...
3
votes
1answer
129 views
Is it possible to have Leksah use a cabal-dev environment for it's workspace?
I'm trying to make sure I don't enter dependency hell by using cabal-dev and I'm also trying to use leksah for my IDE. However, when adding packages to the local workspace in leksah, it build and ...
0
votes
1answer
53 views
How to fix “-no-user-package-conf is deprecated” warnings
Ever since I upgraded to GHC 7.6.2, I'm seeing warnings such as the following:
amy@wombat$ cabal install
Resolving dependencies...
Configuring realta-0.1.0.0...
Building realta-0.1.0.0...
...
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 ...
1
vote
3answers
201 views
I'm upgrading my cabal-install or not at OSX
I just installed Haskell from it's official site. After that, following it's quickstart tutorial, I run:
`cabal update`
Which shows this message:
Downloading the latest package list from ...
2
votes
0answers
126 views
ExitFailure 127 during configure step
I try to install cabal-dev with cabal but I have a problem when it comes to install the network package.
My computer runs under Mac OS X 10.8 (up-to-date). Here is what I get in the Terminal:
...
1
vote
1answer
63 views
cabal install errors-1.3.1 fails
I'm trying to install the newest version of Heist, but errors-1.3.1 which is a dependency fails to install. Any suggestions for how to get past this?
$ cabal install errors-1.3.1
Resolving ...
12
votes
1answer
175 views
Why does cabal install reinstall packages already in .cabal/lib
I'm attempting to use CircleCI to build some Haskell projects. Circle automatically caches the /home/ubuntu/.cabal directory after each build and I thought that would speed up the builds, but they ...
0
votes
1answer
80 views
Numeric.Probability.Monad not exported from probability package and therefore examples don't work?
I was playing around with the probability package, trying to understand how the various examples work. A number of the examples import Numeric.Probability.Monad which is hidden it seems and therefore ...
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 ...
2
votes
2answers
158 views
Trying to experiment with data parallel Haskell - but can't get it to install
Is anyone using data parallel Haskell with the 2012.4.0.0 Haskell platform?
I'm a Haskell beginner - but wanted to experiment with switching from lists to parallel arrays.
When I try and run
cabal ...

