2014-04-09 11:13:43 +01:00
|
|
|
{ cabal, blazeBuilder, conduit, exceptions, fastLogger, liftedBase
|
2013-12-26 19:37:03 +00:00
|
|
|
, monadControl, monadLoops, mtl, resourcet, stm, stmChans, text
|
|
|
|
, transformers, transformersBase
|
2012-12-03 15:11:05 +00:00
|
|
|
}:
|
2012-08-09 10:36:45 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "monad-logger";
|
2014-04-09 11:13:43 +01:00
|
|
|
version = "0.3.5.1";
|
|
|
|
sha256 = "0kc23y1l3ja2ym0pr19kcm8aiv8g8skh24p9i3vm74chadsn81pv";
|
2012-12-03 15:11:05 +00:00
|
|
|
buildDepends = [
|
2014-04-09 11:13:43 +01:00
|
|
|
blazeBuilder conduit exceptions fastLogger liftedBase monadControl
|
|
|
|
monadLoops mtl resourcet stm stmChans text transformers
|
|
|
|
transformersBase
|
2012-12-03 15:11:05 +00:00
|
|
|
];
|
2012-08-09 10:36:45 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/kazu-yamamoto/logger";
|
|
|
|
description = "A class of monads which can log messages";
|
|
|
|
license = self.stdenv.lib.licenses.mit;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|