mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-28 00:19:31 +00:00
Merge pull request #1805 from bennofs/new-ghc-events-analyze
New expression: ghc-events-analyze
This commit is contained in:
commit
0b290b03e2
@ -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;
|
||||
};
|
||||
})
|
@ -1138,6 +1138,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 New Issue
Block a user