2009-07-07 12:01:36 +02:00
|
|
|
args : with args;
|
|
|
|
rec {
|
|
|
|
src = fetchmtn {
|
|
|
|
name = "monotone-viz-mtn-checkout";
|
|
|
|
dbs = ["monotone.ca"];
|
|
|
|
selector = "0e9194c89eb87e62ac7d54c7b88b10b94b07fa41";
|
|
|
|
branch = "net.venge.monotone-viz.automate";
|
2009-11-08 23:12:14 +01:00
|
|
|
sha256 = "d7980c9729b0a58f0dd27768b8eae46b45462fe72a88534b8aa159d889b4d624";
|
2009-07-07 12:01:36 +02: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 */
|
|
|
|
phaseNames = ["doAutoconf" "doConfigure" "doMakeInstall"];
|
|
|
|
|
|
|
|
doAutoconf = fullDepEntry(''
|
|
|
|
aclocal -I .
|
|
|
|
autoconf -I .
|
|
|
|
'') ["minInit" "addInputs" "doUnpack"];
|
|
|
|
|
2009-11-18 10:39:59 +01:00
|
|
|
name = "monotone-viz-mtn-head";
|
2009-07-07 12:01:36 +02:00
|
|
|
meta = {
|
|
|
|
description = "Monotone commit tree visualizer";
|
2009-07-07 17:05:15 +02:00
|
|
|
maintainers = [args.lib.maintainers.raskin];
|
2009-07-07 12:01:36 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|