2013-10-14 08:47:47 +02:00
|
|
|
{ cabal, bifunctors, comonad, distributive, mtl, profunctors
|
|
|
|
, semigroupoids, semigroups, transformers
|
2013-09-08 13:40:37 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "free";
|
2014-01-30 08:32:46 +01:00
|
|
|
version = "4.4";
|
|
|
|
sha256 = "19c6zy7gxsd121g1kny9y8rv33gsxv3kfsi37iyn6q0p8r38wbcy";
|
2013-09-08 13:40:37 +02:00
|
|
|
buildDepends = [
|
2013-10-14 08:47:47 +02:00
|
|
|
bifunctors comonad distributive mtl profunctors semigroupoids
|
|
|
|
semigroups transformers
|
2013-09-08 13:40:37 +02:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/ekmett/free/";
|
|
|
|
description = "Monads for free";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
|
|
|
|
};
|
|
|
|
})
|