Hackage is a centralized package hosting site for the Haskell programming language.

learn more… | top users | synonyms

6
votes
1answer
118 views

User name for HackageDB?

I want to upload a package to HackageDB, and since I'm new to this I need user name and password. It says here I'm supposed to write to Ross Paterson. I've been trying for some weeks, but got no ...
4
votes
4answers
249 views

How are all graphic and web libraries implemented in Haskell?

I only begin to learn Haskell. I've read that it is a pure functional language and everything in it is immutable. So things like input output, writing and reading databases cause mutability of the ...
3
votes
2answers
106 views

Does Hackage have an API?

I want to be able to search for a package and get a download link as well as a list of all the dependencies. Is there an easy way to do this through the command line or a Haskell module?
11
votes
2answers
238 views

How can one make a private copy of Hackage

I'd like to snapshot the global Hackage database into a frozen, smaller one for my company's deploys. How can one most easily copy out some segment of Hackage onto a private server?
2
votes
1answer
122 views

Installing packages (via cabal) from “local hackage”

Is it possible to get cabal to Download a particular package source, including all dependency packages sources. At a later stage (when internet connectivity can no longer be relied upon) install ...
3
votes
1answer
150 views

Connecting to an Sqlite3 database with Haskell / Persistent

Please forgive how simple this question is. Google searches, the documentation, and the Yesod book seem to only explain how to do things with databases, but I have yet to see a straight forward ...
6
votes
1answer
253 views

Creating a Full Haskell Stack with Tests

I'm new to Haskell and I'm trying to structure a program under test. I have decided to use HUnit and Cabal. From what I have seen a well strucutred project looks the following: src/ AppName/ ...
2
votes
0answers
88 views

Does Hackage remove files from uploaded package tarfiles? [closed]

I got an issue report recently that my package's HSpec file was missing from the hackage tarfile, which seemed rather odd to me. I checked it out though, and the user was right: % curl -O ...
3
votes
2answers
206 views

Haskell, Hackage, GHC and productivity. How to solve a real example?

I don't know the best way to solve a simple (probably) problems (hackage related). I asked for help about it ...
6
votes
2answers
292 views

Haskell, Hackage, GHC and productivity. What to do? [closed]

For a year I've been a rookie haskeller ("rookie haskeller" forever, I think). I have coded little haskell programs (eg. a very simple snake game) but package dependencies and ghc failed versions is ...
5
votes
2answers
145 views

Commutative monoid from 'algebra' package on Hackage

The documentation for algebra/2.1.1.2/doc/html shows a colossal number of type classes. How do I declare that a structure in question must be equipped with a commutative associative operation and a ...
2
votes
2answers
160 views

Coloring console output in windows

I was trying to find if it is possible to colour console output in windows system. I found that Console - Ansi but i cant find any information about coloring output in windows prompt. I woudl ...
6
votes
1answer
131 views

Is it possible to see package download stats from Hackage?

It looks like there are reports released on occasion that detail downloads for some of the top packages (http://haskellwebnews.wordpress.com/2011/03/16/hackage-stats-the-past-year/). Is it possible ...
10
votes
2answers
222 views

How can I search a hackage package for a function?

Maybe I am missing something, but is there a way to search inside some package on hackage? Let's say I know that Snap framework has a function called render. How do I find it starting on it's hackage ...
3
votes
1answer
111 views

What does this warning message mean when I upload a module to HackageDB?

When I'm uploading a module to Hackage, I get the following error message: "Exposed modules use unallocated top-level names" I am declaring the module as an exposed module in the .cabal file. Is ...
6
votes
2answers
186 views

How to delete a package from HackageDB?

I have uploaded a package with incorrect name (typo) to http://hackage.haskell.org/ In the hope of not messing up HackageDB, I'm wondering if any approach to delete that package. Thanks a lot your ...
5
votes
3answers
106 views

Source code for standard typeclass instance declarations

I was wondering about the Ord instance declaration for (a,b), and I wanted to do a quick lookup on hackage to confirm my intuition that the comparison is first on a and then, in case of equality, on ...
1
vote
3answers
100 views

No haddock generated when upload package to hackages

After I upload my package into hackages, it didn't generate haddock as others packages. Anything I missed? What I did is: cabal dist and a package generated under dist directory. open hackage web ...
1
vote
1answer
307 views

Is Hackage open-source-only?

Most of the packages I have seen on Hackage are libaries released with open-source licenses and I think I have faint memory of a hackage upload with a missing license field triggering a bashing from ...
13
votes
3answers
230 views

Non-maintainer uploads to Hackage

I have a package on Hackage which depends on third-party package, which doesn't build on newer versions of GHC (>= 7.2). The problem with the other package can be solved with just a one-line patch (a ...
0
votes
1answer
222 views

Haskell: Cannot install OpenGL due to missing dependencies (which are already installed there)

I am trying to install the OpenGL-2.4.0.2 package manually, but after I download the tarball from Hackage and decompressed it, when I ran sudo runhaskell Setup.hs configure I get these: ...
4
votes
1answer
201 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 ...
15
votes
4answers
228 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 ...
2
votes
1answer
52 views

Is there something similar to hackage for SML?

Since the language is fully standardized, that would be a quite useful resource.
4
votes
1answer
224 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
164 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 ...
6
votes
4answers
675 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( ...
7
votes
1answer
461 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
1answer
450 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 ...
8
votes
1answer
970 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 ...
6
votes
2answers
138 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. ...
9
votes
2answers
270 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 ...
16
votes
3answers
605 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 ...
1
vote
1answer
502 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 ...
4
votes
1answer
473 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 ...
5
votes
3answers
2k 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 $ ...
3
votes
2answers
196 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 ...
1
vote
1answer
80 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
227 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 ...
20
votes
6answers
2k 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 ...
5
votes
3answers
317 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, ...
2
votes
3answers
94 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. ...
5
votes
2answers
216 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 ...
15
votes
2answers
2k 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: ...
0
votes
4answers
428 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.
4
votes
1answer
1k 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 ...
2
votes
1answer
4k 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. ...
7
votes
4answers
621 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 ...