2009-07-07 03:01:36 -07:00
|
|
|
args : with args;
|
|
|
|
rec {
|
|
|
|
src = fetchmtn {
|
|
|
|
name = "monotone-viz-mtn-checkout";
|
|
|
|
dbs = ["monotone.ca"];
|
2010-08-03 05:14:16 -07:00
|
|
|
selector = "b34ff2e695b53c2d73d533a3ffa7cb081b48eefb";
|
|
|
|
branch = "net.venge.monotone-viz.new-stdio";
|
|
|
|
sha256 = "06263564bc111d865b50b4a9587a86f8d97fff47625a3c1cb98d90b79faf7889";
|
2009-07-07 03:01:36 -07:00
|
|
|
} + "/";
|
|
|
|
|
|
|
|
buildInputs = [ocaml lablgtk libgnomecanvas gtk graphviz glib
|
|
|
|
pkgconfig autoconf automake libtool];
|
|
|
|
configureFlags = ["--with-lablgtk-dir=${lablgtk}/lib/ocaml/lablgtk2"];
|
|
|
|
|
|
|
|
/* doConfigure should be specified separately */
|
2010-08-03 10:43:10 -07:00
|
|
|
phaseNames = ["doAutoconf" "doPatch" "doConfigure" "doMakeInstall"];
|
2009-07-07 03:01:36 -07:00
|
|
|
|
|
|
|
doAutoconf = fullDepEntry(''
|
|
|
|
aclocal -I .
|
|
|
|
autoconf -I .
|
|
|
|
'') ["minInit" "addInputs" "doUnpack"];
|
2010-08-03 10:43:10 -07:00
|
|
|
|
|
|
|
patches = [ ./graphviz.patch ];
|
2009-07-07 03:01:36 -07:00
|
|
|
|
2009-11-18 01:39:59 -08:00
|
|
|
name = "monotone-viz-mtn-head";
|
2009-07-07 03:01:36 -07:00
|
|
|
meta = {
|
|
|
|
description = "Monotone commit tree visualizer";
|
2009-07-07 08:05:15 -07:00
|
|
|
maintainers = [args.lib.maintainers.raskin];
|
2009-07-07 03:01:36 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|