2013-02-24 13:09:07 -08:00
|
|
|
{ cabal, deepseq, QuickCheck, testFramework
|
|
|
|
, testFrameworkQuickcheck2, text
|
|
|
|
}:
|
2011-03-31 16:21:36 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2011-03-31 16:21:36 -07:00
|
|
|
pname = "attoparsec";
|
2013-02-02 03:23:13 -08:00
|
|
|
version = "0.10.4.0";
|
|
|
|
sha256 = "0inkcrl40j9kgcmmi0xkcszayqjd5yn7i9fyvv0ywfqwpl6lxf5n";
|
2012-02-16 06:05:41 -08:00
|
|
|
buildDepends = [ deepseq text ];
|
2013-02-24 13:09:07 -08:00
|
|
|
testDepends = [
|
|
|
|
QuickCheck testFramework testFrameworkQuickcheck2 text
|
|
|
|
];
|
2011-03-31 16:21:36 -07:00
|
|
|
meta = {
|
2011-12-02 03:46:51 -08:00
|
|
|
homepage = "https://github.com/bos/attoparsec";
|
2013-02-02 03:23:13 -08:00
|
|
|
description = "Fast combinator parsing for bytestrings and text";
|
2011-08-09 16:00:20 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-03-31 16:21:36 -07:00
|
|
|
};
|
|
|
|
})
|