d7d1f995e6
builds of Agda, accelerate-cuda, clientsession, filestore, ghc-events, gitit, happstack, happstack, happstack, hledger-lib, hledger, mime-mail, pandoc, snap, wai-app-static, yesod-static, and urlencoded.
18 lines
521 B
Nix
18 lines
521 B
Nix
{ cabal, binary, mtl }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "ghc-events";
|
|
version = "0.4.0.0";
|
|
sha256 = "0q1r5jxk8ma8rg65n4iixl5zyk4nxpzi4ywf0jz8y1nbbhbas7g2";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [ binary mtl ];
|
|
jailbreak = true;
|
|
noHaddock = true;
|
|
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 ];
|
|
};
|
|
})
|