Tagged Questions
Cabal is a package distribution and build system for the Haskell programming language.
24
votes
2answers
683 views
Are there tools that would be suitable for maintaining a changelog for a Cabal Haskell package?
I'm working fast and furiously on a new Haskell package for compiler writers. I'm going through many minor version numbers daily, and the Haskell packaging system, Cabal, doesn't seem to offer any ...
19
votes
1answer
577 views
OSX, ghci, dylib, what is the correct way?
I need to build some C code and then reference that C code via the FFI. I would like to use my binding from inside ghci on osx. On of my constraints is that I cannot just hand the C sources to ghc ...
15
votes
2answers
1k views
How can I set up a simple test with Cabal?
I have a Haskell project and Cabal package-description that allows me to build and install my package with
$ cabal configure
$ cabal build
$ cabal install
But what about cabal test? Cabal's help ...
14
votes
4answers
178 views
How to handle feature requests that add new package dependencies
I am the maintainer of a package on hackage, lrucache. I recently received a feature request for adding instances for Binary and NFData. Both of those are useful things to have, and I have no issue ...
14
votes
1answer
548 views
Haddock, Cabal: How to include source code examples?
I am the author of the operational package, which includes example code. I would like this example code to be hscolored and installed together with the API documentation, which is generated by ...
14
votes
2answers
1k views
Control.Monad.State found in multiple packages haskell
While evaluating the line "import Control.Monad.State" in a Haskell module, GHC gives me the following error:
Could not find module `Control.Monad.State':
it was found in multiple packages: ...
13
votes
1answer
464 views
Current state of integrating unit tests with Haskell's Cabal?
When i google for how to integrate unit tests with cabal files, i either find
http://www.haskell.org/haskellwiki/How_to_write_a_Haskell_program which does not seem to describe the integration of ...
13
votes
2answers
277 views
What is the relationship between ghc-pkg and cabal?
With respect to how packages are created, installed and used in Haskell, what is the relationship between ghc-pkg and cabal?
What are their roles - when would you use one, over the other, or use ...
12
votes
1answer
251 views
How can my Haskell program or library find its version number?
I would like my cabalised program to have a --version switch.
I would like it to report the same version as is present in the .cabal file.
If I have to update the version number separately in my ...
12
votes
3answers
388 views
Enable --hyperlink-source for “cabal install”
The command cabal haddock has very useful --hyperlink-source option.
I would like to have the source hyperlinked when building documentation with cabal install.
The ticket #517 seems to be just about ...
11
votes
2answers
1k views
Cabal not installing dependencies when needing profiling libraries?
I want to compile my program with profiling, so I run:
$ cabal configure --enable-executable-profiling
...
$ cabal build
...
Could not find module 'Graphics.UI.GLUT':
Perhaps you havent ...
10
votes
2answers
260 views
How are `ghc-pkg` and `cabal` programs related? (Haskell)
As I know cabal is a program to manage installation of packages like FreeBSD's pkg_add.
But there is another tool called ghc-pkg. I don't know why there are two different programs. What's the role of ...
9
votes
1answer
332 views
how to use hoogle locally (like ctags)?
I want to use Hoogle locally, so I can run search queries on one of my projects. There's some documentation [ here ], but I can't figure out how to get it to work. It says to run Haddock, but haddock ...
8
votes
2answers
202 views
Can I get `cabal install` to use multiple cores?
Does anyone know how to get cabal install to exploit parallelism? I'm compiling with GHC, and while I don't know if GHC itself can do parallel builds, surely cabal install could run multiple ...
8
votes
2answers
208 views
Where do QuickCheck instances belong in a cabal package?
I have a cabal package that exports a type NBT which might be useful for other developers. I've gone through the trouble of defining an Arbitrary instance for my type, and it would be a shame to not ...
8
votes
1answer
431 views
Building with runtime flags using cabal and ghc
I have a program written in Haskell and intended to be compiled with GHC. The program scales very well on multiple cores, so enabling multithreading is very important. In my .cabal file I've added ...
8
votes
2answers
234 views
How can configuration tools like sdl-config be used with a cabalized project?
I have a working SDL/Haskell application that I would like to build using Cabal instead of the current Makefile (because that is the "Haskell way"). The Makefile is itself very simple, and I was ...
7
votes
1answer
184 views
help with cabal install package shadowing errors
I've run into the same error for two unrelated packages now, missingpy and monadiccp.
> cabal install -p -v monadiccp
(after some output)
Creating dist/build (and its parents)
...
7
votes
3answers
326 views
C compiler selection in cabal package
I decided to add some flags to control the way that C source file is compiled (i.e. something like use-clang, use-intel etc.).
C-Sources: c_lib/tiger.c
Include-Dirs: c_lib
...
6
votes
1answer
57 views
Haskell: Testing a package against multiple versions of base for Hackage
So I'm trying to upload my first package to Hackage (yay!), and I got this error:
The dependency 'build-depends: base' does not specify an upper bound on the version number. Each major release of ...
6
votes
0answers
129 views
Reinstall all depending packages with cabal manually [closed]
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 ...
6
votes
1answer
109 views
Package versioning policy - Harmless type changes?
The package versioning policy specifies that changing the type of any entity makes a change of the B number in A.B.C necessary.
However, it seems to me that some type changes don't break dependent ...
6
votes
3answers
316 views
Is it possible to use cmake for Haskell projects?
I am planning a project written in Haskell, maybe there are some parts in C as well. For the buildsystem I decided against the common choice for Haskell programs cabal, mainly because I want to learn ...
6
votes
2answers
320 views
Cross platform makefiles for small Haskell project?
I recently built a small, one-file Haskell utility to be included in 'tools' section of my otherwise pure PHP (raised eyebrows, I know) project.
Initially I checked in both the .hs source file as ...
6
votes
4answers
367 views
cabal-install and Debian
So, this is a bit of a personal problem, but maybe people will have good advice or workarounds.
The problem is about installing cabal-install and haskell-platform under Debian.
When you apt-get ...
6
votes
2answers
235 views
How to specify dependency on external C library in .cabal?
I maintain a library with FFI bindings on Hackage. So my Haskell library depends on the corresponding C library and its header files. Now I specify the external dependency in the .cabal file like ...
6
votes
1answer
347 views
make: Could not find module 'System'
Yesterday I had a failing darcs install with cabal, today I get this when running ghc --make node.hs:
node.hs:13:8:
Could not find module `System':
Use -v to see a list of the files ...
6
votes
2answers
190 views
Conventions for Stability field of Cabal packages
Cabal allows for a freeform Stability field:
stability: freeform
The stability level of the package, e.g. alpha, experimental, provisional, stable.
What are the community ...
6
votes
1answer
97 views
Which versions of packages can my Haskell package depend upon?
I'm nearly ready to upload my first package to Hackage!
I have this in my hstest.cabal:
Executable hstest
Main-Is: hstest.hs
Build-Depends: base, mtl, directory, ghc, ...
6
votes
3answers
2k views
Getting Cabal to work with GHC 6.12.1
I've installed the latest GHC package (6.12.1) on OS X, but I can't get Cabal to work. I've removed the version I had previously that worked with GHC 6.10 and tried to re-install from scratch. The ...
5
votes
4answers
197 views
zlib build error with GHC
I'm using a VM with the following configuration:
Arch Linux (3.0-ARCH kernel)
GHC 7.0.3
cabal-install 0.10.2
Cabal library 1.10.1.0
When I try to build zlib using cabal...
$ cabal install zlib
...
5
votes
1answer
95 views
Can't get cabal update to work inside corporate network
I'm trying to use haskell at work. I have installed the HP, but I can't get cabal to update. I assume this is some firewall or dns problem.
$ cabal update
Downloading the latest package list from ...
5
votes
1answer
65 views
How to locally generate a preview of the web page for my cabal package?
From the Hackage check/upload page:
Checking a Cabal package
Re-uploading a package with the same version number is not permitted, so you might want to do some checking before uploading:
...
5
votes
2answers
226 views
cabal install dependency error: “base-* was excluded because of the top level dependency base -any”
Here's the complete error:
$ cabal install hakyll
Resolving dependencies...
cabal: cannot configure snap-server-0.5.3.1. It requires base >=4.3 && <5
For the dependency on base >=4.3 ...
5
votes
1answer
138 views
How to avoid recompiling in this cabal file?
I've been working on this Haskell project, and I have a cabal file for it. Now, my project is structured as a library that implements a simple interpreter. I also have a very short Main file which ...
5
votes
2answers
253 views
Haskell Cabal regenerate documentation for all installed packages
How can I generate and install documentation for all locally installed cabal packages? I turned on the documentation flag in ~/.cabal/config which means that all newly installed packages will have ...
5
votes
2answers
312 views
Haskell Cabal: How to ignore dependencies
I'm trying to install a package (nymphaea as it happens). This depends on an earlier version of base than the one I have. I'm not keen on downgrading my base libraries, so I'd like to try to just ...
5
votes
1answer
430 views
Cabal usage (Haskell)
Cabal has dependency problems constantly. It's really tiring. So far I have tried to get many things working, here's my trying to install snap:
$ sudo cabal install snap-server
Resolving ...
5
votes
3answers
646 views
mysterious cabal-install problems
With a clean install of the "Haskell Platform". (OS X Snow-Leopard & Platform 2010.1.0.1), doing this causes simple sequence causes very weird cabal install behaviour:
$ cabal install time
$ ...
5
votes
2answers
328 views
How do I get ghci to see packages I installed from cabal?
I've installed the such-and-such a package using cabal, and I can build a program that depends on it using cabal build. But when I load the same program in ghci, ghci complains that it "Could not find ...
5
votes
3answers
249 views
hackage package dependencies and future-proof libraries
In the dependencies section of a cabal file:
Build-Depends: base >= 3 && < 5, transformers >= 0.2.0
Should I be doing something like
Build-Depends: base >= 3 && < 5, ...
4
votes
3answers
97 views
“cabal install ___” breaks previously installed packages
I find cabal's behavior when installing packages maddening. For example, running
cabal install funsat
installed old versions of array, time, random, quickcheck, and bitset, breaking packages like ...
4
votes
1answer
132 views
issues installing yesod
I want to install yesod to learn a bit about web and playing a bit with Haskell in my spare time but when i do:
> cabal install yesod
Resolving dependencies...
cabal: cannot configure ...
4
votes
1answer
120 views
How can one register a package built with cabal-dev?
I was able to use cabal-dev to build some packages that cabal was having issues with. ( help with cabal install package shadowing errors ). How does one then install and use them? I tried copying the ...
4
votes
1answer
215 views
What's the best workaround for not having “cabal upgrade”?
I want to upgrade all packages, not just a specific one with cabal install --upgrade-dependencies.
4
votes
2answers
116 views
Package build failure on Hackage
I uploaded my first package to Hackage ( http://hackage.haskell.org/package/groundhog-0.0.1) and it failed to build with error:
*** setup configure
Configuring groundhog-0.0.1...
cabal-setup: At ...
4
votes
1answer
97 views
Cabal to setup a new Haskell project?
Is it possible to (ab)use Cabal to have it create a generic Haskell project with a simple command, similar to what you can do in the Scala world with Sbt or Maven?
e.g.
> cabal create ...
4
votes
3answers
79 views
Different imports according to version of dependencies
I have a module that uses Control.Exception in Base < 4 which is Control.OldException in Base >= 4. How can I, using cabal or any other tool, get rid of the version dependency (just depend on ...
4
votes
1answer
265 views
Override -Werror when installing from Cabal
I'm trying to install the nano-hmac-0.2.0 package (a dependency of a package I want) from Hackage using Cabal and GHC 6.12.1, but it fails with the following error:
Data/Digest/OpenSSL/HMAC.hsc:1:0:
...
4
votes
2answers
102 views
How do I run my package's tests using different versions of its prerequisites?
Suppose I've written a Haskell package that I'd like to release to Hackage.
Suppose I've written automated tests for it, so I know it works on my machine, with the version of GHC I have installed, ...