e5da05349c
Patch supplied by Vladimír Čunát. Thanks. svn path=/nixpkgs/trunk/; revision=26648
14 lines
347 B
Nix
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";
|
|
};
|
|
})
|
|
|