nixpkgs/pkgs/development/libraries/haskell/monad-logger/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

20 lines
583 B
Nix

{ cabal, conduit, fastLogger, monadControl, mtl, resourcet, text
, transformers, transformersBase
}:
cabal.mkDerivation (self: {
pname = "monad-logger";
version = "0.3.1.1";
sha256 = "11qqmflcydjfm5py7rkbi9qd0mkhw4kxzxff95wf0jmaia9knvx6";
buildDepends = [
conduit fastLogger monadControl mtl resourcet text transformers
transformersBase
];
meta = {
homepage = "https://github.com/kazu-yamamoto/logger";
description = "A class of monads which can log messages";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})