nixpkgs/pkgs/development/libraries/haskell/hp2any-graph/default.nix
Andres Löh eabbecd10f Added hp2any.
svn path=/nixpkgs/trunk/; revision=27701
2011-07-11 07:17:53 +00:00

15 lines
478 B
Nix

{cabal, GLUT, OpenGL, hp2anyCore, network, parseargs}:
cabal.mkDerivation (self : {
pname = "hp2any-graph";
version = "0.5.3";
sha256 = "1al20pxfgkgwynrx7vr0i57342s91lcm3cnd9qjx8b6vkqmzykkq";
propagatedBuildInputs = [GLUT OpenGL hp2anyCore network parseargs];
meta = {
description = "Real-time heap graphing utility and profile stream server with a reusable graphing module";
license = "BSD3";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})