summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/attoparsec/enumerator.nix
blob: 4152cd4ed2c4225f052524f820822169247c8ed9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{cabal, attoparsec, enumerator}:

cabal.mkDerivation (self : {
  pname = "attoparsec-enumerator";
  version = "0.2.0.4";
  sha256 = "14v53vppcf4k3m4kid10pg5r3zsn894f36w1y2pzlc72w81fv3gd";
  propagatedBuildInputs = [attoparsec enumerator];
  meta = {
    description = "Converts an Attoparsec parser into an iteratee";
    license = "BSD3";
  };
})