2014-04-12 17:15:39 +02:00
|
|
|
{ cabal, binary, fastLogger, hspec, liftedBase, monadControl
|
2014-04-18 04:48:05 +02:00
|
|
|
, monadLogger, pcreLight, text, time, transformers, vectorSpace
|
2014-04-12 17:15:39 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "logging";
|
2014-04-18 04:48:05 +02:00
|
|
|
version = "1.4.0";
|
|
|
|
sha256 = "0xkk6j9wa5n0qg0wp7a9bwaz328hrjk1fwanpa515hh3gvz62g94";
|
2014-04-12 17:15:39 +02:00
|
|
|
buildDepends = [
|
|
|
|
binary fastLogger liftedBase monadControl monadLogger pcreLight
|
2014-04-18 04:48:05 +02:00
|
|
|
text time transformers vectorSpace
|
2014-04-12 17:15:39 +02:00
|
|
|
];
|
|
|
|
testDepends = [ hspec monadLogger ];
|
|
|
|
meta = {
|
|
|
|
description = "Simplified logging in IO for application writers";
|
|
|
|
license = self.stdenv.lib.licenses.mit;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|