c0204a42b9
svn path=/nixpkgs/trunk/; revision=29323
24 lines
746 B
Nix
24 lines
746 B
Nix
{ cabal, freeglut, GLUT, hp2anyCore, mesa, network, OpenGL
|
|
, parseargs
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hp2any-graph";
|
|
version = "0.5.3";
|
|
sha256 = "1al20pxfgkgwynrx7vr0i57342s91lcm3cnd9qjx8b6vkqmzykkq";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [ GLUT hp2anyCore network OpenGL parseargs ];
|
|
extraLibraries = [ freeglut mesa ];
|
|
meta = {
|
|
homepage = "http://www.haskell.org/haskellwiki/Hp2any";
|
|
description = "Real-time heap graphing utility and profile stream server with a reusable graphing module";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|