mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
New expression: ghc-events-analyze
This commit is contained in:
parent
864c75b7fd
commit
9ad8ce91a3
2 changed files with 22 additions and 0 deletions
|
@ -0,0 +1,20 @@
|
|||
{ cabal, diagramsLib, diagramsSvg, filepath, ghcEvents, lens, mtl
|
||||
, optparseApplicative, parsec, SVGFonts, thLift, transformers
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "ghc-events-analyze";
|
||||
version = "0.2.0";
|
||||
sha256 = "04px1p0pnx54414m7sdpmdhj2dpsi1z8bjm8jq2yzh66854xiyh4";
|
||||
isLibrary = false;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
diagramsLib diagramsSvg filepath ghcEvents lens mtl
|
||||
optparseApplicative parsec SVGFonts thLift transformers
|
||||
];
|
||||
meta = {
|
||||
description = "Analyze and visualize event logs";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -1134,6 +1134,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
|||
|
||||
ghcEvents = callPackage ../development/libraries/haskell/ghc-events {};
|
||||
|
||||
ghcEventsAnalyze = callPackage ../development/tools/haskell/ghc-events-analyze {};
|
||||
|
||||
ghcHeapView = callPackage ../development/libraries/haskell/ghc-heap-view {
|
||||
cabal = self.cabal.override { enableLibraryProfiling = false; }; # pkg cannot be built with profiling enabled
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue