nixpkgs/pkgs/development/libraries/haskell/parsers/0.10.2.nix

20 lines
545 B
Nix
Raw Normal View History

{ cabal, charset, doctest, filepath, parsec, text, transformers
2013-09-25 16:28:09 +00:00
, unorderedContainers
}:
cabal.mkDerivation (self: {
pname = "parsers";
version = "0.10.2";
sha256 = "092wck874sdyyh4aql5kzsm8k9a7dscgndvzarhh98by5k3n45bk";
buildDepends = [
charset parsec text transformers unorderedContainers
];
2013-09-25 16:28:09 +00:00
testDepends = [ doctest filepath ];
meta = {
homepage = "http://github.com/ekmett/parsers/";
description = "Parsing combinators";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})