Add MFlow and dependencies

This commit is contained in:
Thomas Bereknyei
2014-06-08 23:44:11 -04:00
parent c2fb8b1364
commit cd4041b905
5 changed files with 78 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{ cabal, binary, exceptions, extensibleExceptions, mtl
, RefSerialize, stm, TCache, vector
}:
cabal.mkDerivation (self: {
pname = "Workflow";
version = "0.8.1";
sha256 = "0z23g68gcbbn43i78cql4is9js3m4z16rm2x8s57f73n0hx7f00l";
buildDepends = [
binary exceptions extensibleExceptions mtl RefSerialize stm TCache
vector
];
meta = {
description = "Workflow patterns over a monad for thread state logging & recovery";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.tomberek ];
};
})