hp2any-manager: tool for haskell heap profile visualization

This commit is contained in:
Sönke Hahn 2014-06-13 16:22:46 +08:00
parent e9e6e1ceb9
commit aaf8b264d7
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ cabal, cairo, filepath, glade, glib, gtk, gtkglext, hp2anyCore
, hp2anyGraph, OpenGL, time
}:
cabal.mkDerivation (self: {
pname = "hp2any-manager";
version = "0.4.6";
sha256 = "143j3ylvzyq1s2l357vzqrwdcgg6rqhnmv0awb3nvm66c9smaarv";
isLibrary = false;
isExecutable = true;
buildDepends = [
cairo filepath glade glib gtk gtkglext hp2anyCore hp2anyGraph
OpenGL time
];
meta = {
homepage = "http://www.haskell.org/haskellwiki/Hp2any";
description = "A utility to visualise and compare heap profiles";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -2655,6 +2655,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
hlint = callPackage ../development/tools/haskell/hlint {};
hp2anyManager = callPackage ../development/tools/haskell/hp2any-manager {};
hscolour = callPackage ../development/tools/haskell/hscolour {};
hscolourBootstrap = self.hscolour.override {
cabal = self.cabal.override {