haskell-free-operational: new expression

This commit is contained in:
John Wiegley
2014-06-16 14:01:00 -07:00
parent 7a45ef7e25
commit 20f31b66a2
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{ cabal, comonadTransformers, free, kanExtensions, mtl, comonad
, transformers
}:
cabal.mkDerivation (self: {
pname = "free-operational";
version = "0.5.0.0";
sha256 = "0gim4m0l76sxxg6a8av1gl6qjpwxwdzyviij86d06v1150r08dmb";
jailbreak = true; # needs an old version of kan-extensions
buildDepends = [
comonadTransformers free kanExtensions mtl transformers comonad
];
meta = {
description = "Operational Applicative, Alternative, Monad and MonadPlus from free types";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})