nixpkgs/pkgs/development/libraries/haskell/ghc-events/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

19 lines
532 B
Nix

{ cabal, binary, mtl }:
cabal.mkDerivation (self: {
pname = "ghc-events";
version = "0.4.2.0";
sha256 = "0209r9g5w4ifsaw3dkfra6kma1vyk50dc306an72mcwnp4l7dv4l";
isLibrary = true;
isExecutable = true;
buildDepends = [ binary mtl ];
testDepends = [ binary mtl ];
doCheck = false;
meta = {
description = "Library and tool for parsing .eventlog files from GHC";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})