2012-02-14 09:00:37 -08:00
|
|
|
{ cabal, Cabal, deepseq, 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";
|
2012-02-13 01:01:54 -08:00
|
|
|
version = "0.10.1.1";
|
|
|
|
sha256 = "07zl85nkimpswlb4rxycisaphhyrlq4la2limxxi7sk21gyh88b0";
|
2012-02-14 09:00:37 -08:00
|
|
|
buildDepends = [ Cabal deepseq text ];
|
2011-03-31 16:21:36 -07:00
|
|
|
meta = {
|
2011-12-02 03:46:51 -08:00
|
|
|
homepage = "https://github.com/bos/attoparsec";
|
2011-03-31 16:21:36 -07:00
|
|
|
description = "Fast combinator parsing for bytestrings";
|
2011-08-09 16:00:20 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-03-31 16:21:36 -07:00
|
|
|
};
|
|
|
|
})
|