2013-09-25 17:33:17 +01:00
|
|
|
{ cabal, comonad, fingertree, hashable, keys, pointed
|
|
|
|
, semigroupoids, semigroups, text, transformers
|
|
|
|
, unorderedContainers
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "reducers";
|
2013-12-09 12:03:22 +00:00
|
|
|
version = "3.10.1.1";
|
|
|
|
sha256 = "1d4zhcqy499pm0wxn76gyw0brbrdycmajblqy4mi49kiy0zlg8a7";
|
2013-09-25 17:33:17 +01:00
|
|
|
buildDepends = [
|
|
|
|
comonad fingertree hashable keys pointed semigroupoids semigroups
|
|
|
|
text transformers unorderedContainers
|
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/ekmett/reducers/";
|
|
|
|
description = "Semigroups, specialized containers and a general map/reduce framework";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|