Tagged Questions
2
votes
1answer
86 views
How can I use GHCi with the new cabal 1.17 sandboxes?
I've been trying out cabal head which has support for sandboxes similar to cabal-dev. However there's not yet support for a cabal-dev ghci equivalent and apparently no support planned for the next ...
4
votes
0answers
87 views
Is there a maximum number of modules that can be compiled via Cabal?
Is there a maximum number of modules that can be compiled via Cabal / via GHC?
I do have a rather large project (many auto generated modules) which does not compile using cabal, but no error message ...
7
votes
1answer
106 views
Haskell package versioning policy - changes in dependencies
Let's say I have libfoo. It depends on libbar. In accordance with the Package Versioning Policy, I specify
libbar ==0.1.*
in the Build-depends: in my cabal file.
Then the developer of libbar ...
2
votes
1answer
50 views
Haskell cabal: Generate latex haddock documentation
I am trying to generate API documentation via cabal and haddock. I want it to be latex. So I do:
cabal haddock --haddock-option=--latex
This fails ultimately with:
haddock: internal error: ...
1
vote
1answer
104 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
89 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 ...
4
votes
0answers
69 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
77 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: ...
17
votes
2answers
182 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
51 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
76 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
109 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
42 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
85 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
76 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
60 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 ...
1
vote
1answer
43 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
93 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?
3
votes
1answer
137 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
81 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 ...
4
votes
1answer
38 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
68 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 ...
0
votes
1answer
77 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 ...
1
vote
2answers
171 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
75 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
67 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
78 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
134 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
58 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
112 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
56 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:
...
48
votes
1answer
911 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
224 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
165 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
231 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!) ...
0
votes
1answer
108 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
140 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
68 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
73 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
255 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
141 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
68 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
181 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
90 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
183 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
101 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
174 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 ...
6
votes
1answer
236 views
How to change path of cabal config file?
I am using HaskellPlatform-2012.4.0.0 on Win7. It's installed as portable. Paths are managed through .bat file so ghci and ghc works.
But cabal installs it self at C:\Users\name\AppData\Roaming\cabal\
...
1
vote
1answer
73 views
Reregister existing package with ghc-pkg
I have previously installed a package with cabal install <package>. And I have unregistered it using ghc-pkg unregister. But now I want it back again.
The package binaries and source are still ...


