Added parseargs.

svn path=/nixpkgs/trunk/; revision=16996
This commit is contained in:
Andres Löh 2009-09-09 15:45:27 +00:00
parent daceb23a25
commit dbfe44e6eb
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,10 @@
{cabal}:
cabal.mkDerivation (self : {
pname = "parseargs";
version = "0.1.2";
sha256 = "93e34497bc3921f245474a8fc1807303211cf5ab40f0b655e02eb0242ef75694";
meta = {
description = "Command-line argument parsing library for Haskell programs";
};
})

View File

@ -316,6 +316,10 @@ rec {
inherit cabal;
};
parseargs = import ../development/libraries/haskell/parseargs {
inherit cabal;
};
parsec = import ../development/libraries/haskell/parsec {
inherit cabal;
};