e5da05349c
Patch supplied by Vladimír Čunát. Thanks. svn path=/nixpkgs/trunk/; revision=26648
14 lines
349 B
Nix
14 lines
349 B
Nix
{cabal, attoparsec, enumerator}:
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "attoparsec-enumerator";
|
|
version = "0.2.0.3";
|
|
sha256 = "02v9cwq1jbn0179zd2cky4ix6ykrkd7cpw38c1x7zgy0pal42x4v";
|
|
propagatedBuildInputs = [attoparsec enumerator];
|
|
meta = {
|
|
description = "Converts an Attoparsec parser into an iteratee";
|
|
license = "BSD3";
|
|
};
|
|
})
|
|
|