forked from mirrors/nixpkgs
haskell-parsers: add version 0.9
This commit is contained in:
parent
01c91a7fa1
commit
ce11e602a1
17
pkgs/development/libraries/haskell/parsers/default.nix
Normal file
17
pkgs/development/libraries/haskell/parsers/default.nix
Normal 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;
|
||||
};
|
||||
})
|
|
@ -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 {};
|
||||
|
|
Loading…
Reference in a new issue