2014-01-11 12:08:19 +01:00
|
|
|
{ cabal, deepseq, QuickCheck, scientific, testFramework
|
|
|
|
, testFrameworkQuickcheck2, text
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "attoparsec";
|
2014-05-03 11:46:10 +02:00
|
|
|
version = "0.11.3.0";
|
|
|
|
sha256 = "1vnkm5pf0a381is4i0zyi41p4jv184lqpv1z9aadsnavpg0841qs";
|
2014-01-11 12:08:19 +01:00
|
|
|
buildDepends = [ deepseq scientific text ];
|
|
|
|
testDepends = [
|
|
|
|
QuickCheck testFramework testFrameworkQuickcheck2 text
|
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/bos/attoparsec";
|
|
|
|
description = "Fast combinator parsing for bytestrings and text";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
|
|
};
|
|
|
|
})
|