2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, attoparsec, enumerator, text }:
|
2011-04-01 01:21:36 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-04-01 01:21:36 +02:00
|
|
|
pname = "attoparsec-enumerator";
|
2014-01-17 10:40:21 +01:00
|
|
|
version = "0.3.2";
|
|
|
|
sha256 = "1jrrdhzqjfb78bhnjpy0j0qywqd2j67an41pcn8y6331nzmzsrl8";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ attoparsec enumerator text ];
|
2011-04-01 01:21:36 +02:00
|
|
|
meta = {
|
2011-12-02 12:46:56 +01:00
|
|
|
homepage = "https://john-millikin.com/software/attoparsec-enumerator/";
|
|
|
|
description = "Pass input from an enumerator to an Attoparsec parser";
|
2011-08-10 01:00:20 +02:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-04-01 01:21:36 +02:00
|
|
|
};
|
|
|
|
})
|