nixpkgs/pkgs/development/libraries/haskell/enumerator/default.nix
Andres Löh e5da05349c Updating Hakyll and dependencies.
Patch supplied by Vladimír Čunát. Thanks.

svn path=/nixpkgs/trunk/; revision=26648
2011-03-31 23:21:36 +00:00

14 lines
347 B
Nix

{cabal, text, transformers}:
cabal.mkDerivation (self : {
pname = "enumerator";
version = "0.4.9.1";
sha256 = "1rnhapj5am1rv3dff2bkhch7ikpyhs18nay39h0805xl50dcyw99";
propagatedBuildInputs = [text transformers];
meta = {
description = "Reliable, high-performance processing with left-fold enumerators";
license = "MIT";
};
})