nixpkgs/pkgs/development/libraries/haskell/parsers/0.11.0.2.nix
Peter Simons 20da5ecc9c haskell-parsers: update to version 0.11.0.2
Unfortunately, there are still build errors with this package (see
https://github.com/ekmett/parsers/issues/39). We need the latest
version, though, because older ones won't work with the latest
attoparsec.
2014-06-09 10:27:00 +02:00

20 lines
570 B
Nix

{ cabal, attoparsec, charset, doctest, filepath, parsec, text
, transformers, unorderedContainers
}:
cabal.mkDerivation (self: {
pname = "parsers";
version = "0.11.0.2";
sha256 = "0b2qb6lhn647926s2g7qrzhnvnym5dr7fny784bv19mfvimwi81c";
buildDepends = [
attoparsec charset parsec 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;
};
})