2013-12-09 12:03:19 +00:00
|
|
|
{ cabal, blazeBuilder, filepath, hspec, text }:
|
2011-12-26 15:35:37 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "fast-logger";
|
2013-12-24 16:27:45 +00:00
|
|
|
version = "2.0.3";
|
|
|
|
sha256 = "13qjdkfps673wy8mnaqkni43kbxxhimzbshv1ifhwf4s8wgc2mjw";
|
2013-12-09 12:03:19 +00:00
|
|
|
buildDepends = [ blazeBuilder filepath text ];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [ hspec ];
|
2011-12-26 15:35:37 +00:00
|
|
|
meta = {
|
|
|
|
description = "A fast logging system";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-12-26 15:35:37 +00:00
|
|
|
};
|
|
|
|
})
|