Added parsimony and polyparse, updated parsec.
svn path=/nixpkgs/trunk/; revision=17464
This commit is contained in:
parent
48865a4aa6
commit
9669ae336a
@ -2,8 +2,8 @@
|
||||
|
||||
cabal.mkDerivation (self : {
|
||||
pname = "parsec";
|
||||
version = "3.0.0"; # Haskell Platform 2009.0.0
|
||||
sha256 = "0fqryy09y8h7z0hlayg5gpavghgwa0g3bldynwl17ks8l87ykj7a";
|
||||
version = "3.0.1";
|
||||
sha256 = "619d0c2eb093cfe6d6caab2ff94f31a6208720b4bcc85b9f98600253bb505542";
|
||||
propagatedBuildInputs = [mtl];
|
||||
meta = {
|
||||
description = "Monadic parser combinators";
|
||||
|
12
pkgs/development/libraries/haskell/parsimony/default.nix
Normal file
12
pkgs/development/libraries/haskell/parsimony/default.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{cabal, utf8String}:
|
||||
|
||||
cabal.mkDerivation (self : {
|
||||
pname = "parsimony";
|
||||
version = "1";
|
||||
sha256 = "8196029dc346470301f4535f678724412060a0aafd81b017211b57635a25a378";
|
||||
propagatedBuildInputs = [utf8String];
|
||||
meta = {
|
||||
description = "Monadic parser combinators derived from Parsec";
|
||||
};
|
||||
})
|
||||
|
11
pkgs/development/libraries/haskell/polyparse/default.nix
Normal file
11
pkgs/development/libraries/haskell/polyparse/default.nix
Normal file
@ -0,0 +1,11 @@
|
||||
{cabal}:
|
||||
|
||||
cabal.mkDerivation (self : {
|
||||
pname = "polyparse";
|
||||
version = "1.3";
|
||||
sha256 = "6d82f08634f0856c7919c9413199f4d5f91e753a6d796a0b61e46d7cd1ce4a24";
|
||||
meta = {
|
||||
description = "A variety of alternative parser combinator libraries";
|
||||
};
|
||||
})
|
||||
|
@ -328,11 +328,19 @@ rec {
|
||||
inherit cabal mtl;
|
||||
};
|
||||
|
||||
parsimony = import ../development/libraries/haskell/parsimony {
|
||||
inherit cabal utf8String;
|
||||
};
|
||||
|
||||
pcreLight = import ../development/libraries/haskell/pcre-light {
|
||||
inherit cabal;
|
||||
inherit (pkgs) pcre;
|
||||
};
|
||||
|
||||
polyparse = import ../development/libraries/haskell/polyparse {
|
||||
inherit cabal;
|
||||
};
|
||||
|
||||
QuickCheck = QuickCheck1;
|
||||
QuickCheck1 = QuickCheck1200;
|
||||
QuickCheck2 = QuickCheck2101;
|
||||
|
Loading…
Reference in New Issue
Block a user