2012-02-16 06:05:41 -08:00
|
|
|
{ cabal, attoparsec, enumerator, 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-enumerator";
|
2014-01-17 01:40:21 -08:00
|
|
|
version = "0.3.2";
|
|
|
|
sha256 = "1jrrdhzqjfb78bhnjpy0j0qywqd2j67an41pcn8y6331nzmzsrl8";
|
2012-02-16 06:05:41 -08:00
|
|
|
buildDepends = [ attoparsec enumerator text ];
|
2011-03-31 16:21:36 -07:00
|
|
|
meta = {
|
2011-12-02 03:46:56 -08:00
|
|
|
homepage = "https://john-millikin.com/software/attoparsec-enumerator/";
|
|
|
|
description = "Pass input from an enumerator to an Attoparsec parser";
|
2011-08-09 16:00:20 -07:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
|
|
|
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
|
|
|
};
|
|
|
|
})
|