Added readline package for Haskell.

svn path=/nixpkgs/trunk/; revision=15228
This commit is contained in:
Andres Löh
2009-04-21 21:12:56 +00:00
parent d3b5bc4a20
commit 8cfa1a5034
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{ cabal, readline } :
cabal.mkDerivation (self : {
pname = "readline";
version = "1.0.1.0";
sha256 = "07f2f039f32bf18838a4875d0f3caa3ed9436dd52b962b2061f0bb8a3316fa1d";
propagatedBuildInputs = [ readline ];
meta = {
description = "An interface to the GNU readline library";
};
})