c13f967ed5
svn path=/nixpkgs/trunk/; revision=28418
15 lines
500 B
Nix
15 lines
500 B
Nix
{cabal, attoparsecText, enumerator, text} :
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "attoparsec-text-enumerator";
|
|
version = "0.2.0.0";
|
|
sha256 = "149ipf5qh7wzjrnv98h6j94djr0ndzg8s4rs8h7kzbii21ynmzz5";
|
|
propagatedBuildInputs = [ attoparsecText enumerator text ];
|
|
meta = {
|
|
description = "Convert an attoparsec-text parser into an iteratee";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|