haskellPackages.foldl: New expression

This commit is contained in:
Oliver Charles
2013-11-27 12:22:21 +00:00
parent 6f4c08b0b7
commit 6bf6769ae4
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{ cabal }:
cabal.mkDerivation (self: {
pname = "foldl";
version = "1.0.0";
sha256 = "0r9lkyw33231nfl9ly25hk2i7k3c8ssmng473xvk76zkcrksj131";
meta = {
description = "Composable, streaming, and efficient left folds";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
};
})