3
0
Fork 0
forked from mirrors/nixpkgs

haskell-parsers: add version 0.9

This commit is contained in:
Peter Simons 2013-09-25 18:28:09 +02:00
parent 01c91a7fa1
commit ce11e602a1
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ cabal, charset, doctest, filepath, text, transformers
, unorderedContainers
}:
cabal.mkDerivation (self: {
pname = "parsers";
version = "0.9";
sha256 = "04lbayvdv2hax4s9sqlnia7jpzv1sgls41ylql0xbi2zhz5rvyyi";
buildDepends = [ charset text transformers unorderedContainers ];
testDepends = [ doctest filepath ];
meta = {
homepage = "http://github.com/ekmett/parsers/";
description = "Parsing combinators";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -1640,6 +1640,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
parsec3 = self.parsec_3_1_3;
parsec = self.parsec3;
parsers = callPackage ../development/libraries/haskell/parsers {};
parsimony = callPackage ../development/libraries/haskell/parsimony {};
Pathfinder = callPackage ../development/libraries/haskell/Pathfinder {};