2013-02-24 22:09:07 +01:00
|
|
|
{ cabal, blazeBuilder, dateCache, filepath, hspec, text, unixTime
|
|
|
|
}:
|
2011-12-26 16:35:37 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "fast-logger";
|
2013-07-23 10:51:57 +02:00
|
|
|
version = "0.3.2";
|
|
|
|
sha256 = "0bx8yjg7bf18i7j7fnhidnms5a3v6hiwqqvr249fk03c86v20rla";
|
2012-09-11 12:15:34 +02:00
|
|
|
buildDepends = [ blazeBuilder dateCache filepath text unixTime ];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [ hspec ];
|
2011-12-26 16:35:37 +01:00
|
|
|
meta = {
|
|
|
|
description = "A fast logging system";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-12-26 16:35:37 +01:00
|
|
|
};
|
|
|
|
})
|