mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 13:13:33 +00:00
20da5ecc9c
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.
20 lines
570 B
Nix
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;
|
|
};
|
|
})
|