nixpkgs/pkgs/development/tools/haskell/hslogger/default.nix

18 lines
520 B
Nix
Raw Normal View History

{ cabal, mtl, network, time }:
cabal.mkDerivation (self: {
pname = "hslogger";
version = "1.2.0";
sha256 = "17ipnz7zd403x2gi2086chrgcnk76304hdxr5mv4phg4rm8w226y";
isLibrary = true;
isExecutable = true;
buildDepends = [ mtl network time ];
meta = {
homepage = "http://software.complete.org/hslogger";
description = "Versatile logging framework";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})