Added Monotone-Viz, viewer for monotone histories.

svn path=/nixpkgs/trunk/; revision=12034
This commit is contained in:
Michael Raskin
2008-06-11 06:12:18 +00:00
parent 18099d1ad5
commit d139e5244c
3 changed files with 27 additions and 2 deletions
@@ -0,0 +1,19 @@
args : with args;
rec {
src = fetchurl {
url = http://oandrieu.nerim.net/monotone-viz/monotone-viz-1.0.1-nolablgtk.tar.gz;
sha256 = "0aqz65mlqplj5ccr8czcr6hvliclf9y1xi1rrs2z2s3fvahasxnp";
};
buildInputs = [ocaml lablgtk libgnomecanvas gtk graphviz glib pkgconfig];
configureFlags = ["--with-lablgtk-dir=${lablgtk}/lib/ocaml/lablgtk2"];
/* doConfigure should be specified separately */
phaseNames = ["doConfigure" "doMakeInstall"];
name = "monotone-viz-" + version;
meta = {
description = "Monotone commit tree visualizer";
};
}