about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/fast-logger/default.nix
blob: fb8714f3e8543b419aca0f6bbd04dac0b77b6642 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ cabal, blazeBuilder, dateCache, filepath, hspec, text, unixTime
}:

cabal.mkDerivation (self: {
  pname = "fast-logger";
  version = "0.3.3";
  sha256 = "0ya9dn9j2nddpclj00w6jgmiq2xx500sws056fa2s4bdsl8vn5rh";
  buildDepends = [ blazeBuilder dateCache filepath text unixTime ];
  testDepends = [ hspec ];
  meta = {
    description = "A fast logging system";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})