Tagged Questions
Hackage is a centralized package hosting site for the Haskell programming language.
18
votes
6answers
1k views
Which is your favorite “hidden gem” package on Hackage? [closed]
There are a lot of packages on Hackage, some well known (such as HUnit) and some less known (such as AspectAG). I'm wondering which package you think is a hidden gem that deserves more users. Maybe a ...
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
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
2answers
360 views
Which Haskell package for JSON
There are about a dozen JSON packages on Hackage for Haskell. How do I know which package I should use? How do I get a popular opinion?
Are there any statistics on which package is being used the ...
6
votes
2answers
120 views
Authentication for hackage downloads?
Is there any way to ensure authenticity of downloads from hackage? As far as I can see, there's nothing. No https for hackage, and neither (strong) checksums for tarballs, and neither are they signed.
...
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 ...
5
votes
4answers
306 views
What's the equivalent of Ruby's pnormaldist statistics function in Haskell?
As seen here: http://www.evanmiller.org/how-not-to-sort-by-average-rating.html
Here's the Ruby code itself, implemented in the Statistics2 library:
# inverse of normal distribution ([2])
# Pr( ...
5
votes
1answer
431 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
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
1answer
95 views
Which Haskell library for interpolated strings
There are many different libraries on Hackage dealing with interpolated strings. Some have poor quality while other vary with number of features they support.
Which ones are worth using?
Examples of ...
4
votes
1answer
149 views
What's the best hierarchical module path for an OpenCL-Haskell library?
I'm creating a OpenCL high-level haskell library. Where's the best path in haskell tree for put it? I think it should be outside of Graphics subtree but I dont know where to put it.
It's based on ...
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
159 views
Cabal installing quickcheck version problem
I'm trying to install quickcheck 2 via cabal on Ubuntu 10.04. No matter what I try to do, I always end up with the following:
$ cabal list quickcheck
* QuickCheck
Synopsis: Automatic testing of ...
4
votes
2answers
151 views
How do I create a suitable .tar.gz file for use with `cabal upload`?
The standard way to share a Haskell library with other programmers is to create a Cabal package and upload it to http://hackage.haskell.org. I've written a library I wish to share, and
I've ...
4
votes
1answer
809 views
install haskell cabal w/o manual dependency resolution
I see there's a nice package system called Cabal that handles dependency resolution. So I'm trying to install that so I can get it to install the Haskell OpenGL modules for me. However, Cabal itself ...
4
votes
4answers
364 views
Which Haskell package contains given module
I know a Haskell module name, but I can't figure out in what package it is defined. This is bad because I can't compile without a package exposing this module.
Specificaly it is Text.Regex that I ...
3
votes
1answer
161 views
Why is the Haddock documentation not showing up on Hackage?
I've got a package on Hackage that has haddock generated documentation but it isn't showing up on the Hackage page. I'm able to upload everything successfully but the documentation doesn't show up.
I ...
3
votes
2answers
127 views
In Haskell looking for a package that allows to consume a web response body as a stream
from RWH
http://book.realworldhaskell.org/read/extended-example-web-client-programming.html
The HTTP library used here does not read the HTTP result lazily. As a result, it can result in the ...
2
votes
1answer
241 views
How to include hackage packages into Leksah
I wanted to start playing with hExpat for Xml I/O with Haskell.
However I didn't manage to find where to express to Leksah that I want to import that package into my current module.
Could you tell me ...
2
votes
3answers
73 views
Manipulating source packages from Hackage how to easy deploy to several windows boxes?
Recently when I have found good sources packages for ghc 6.12/6.10 on Hackage I've been forced to do some minor or major changes to the cabal files to make those packages to work under windows.
...
2
votes
1answer
3k views
On Cygwin, how do I install curl from hackage?
From a Windows command prompt,
c:\>cabal install curl
Resolving dependencies...
Configuring curl-1.3.5...
cabal: Error: some packages failed to install:
curl-1.3.5 failed during the configure step. ...
1
vote
1answer
40 views
Is there something similar to hackage for SML?
Since the language is fully standardized, that would be a quite useful resource.
1
vote
1answer
278 views
Installing a Haskell package from Hackage through Cabal gets stuck at dependency resolution
Here is the output from verbose mode. I know this used to work for me before but now this happens. I've tried it with other packages and got the same result.
$ sudo cabal install ...
1
vote
1answer
74 views
Do you know a Haskell package for dirent.h on Windows?
Do you know a Haskell package for dirent.h on Windows?
There is similar set of functions in system.posix but those functions are not implemented on Windows.
I wonder if there is similar somewhere ...
1
vote
3answers
168 views
Cabal and zlib on OS X
When I run "cabal update" on my Mac (Snow Leopard, Intel), I get:
% cabal update
Downloading the latest package list from hackage.haskell.org
cabal: Codec.Compression.Zlib: incompatible zlib version
...
0
votes
4answers
312 views
How to programmatically retrieve GHC package information?
More specifically, given an arbritary package name I need to retrieve the same library-dirs field that can be obtained with the ghc-pkg describe command from inside a running Haskell program.