1{ stdenv, fetchsvn, graphviz, gtk, gtkmm, pkgconfig, python }:
2
3stdenv.mkDerivation rec {
4 name = "ganv-svn-${rev}";
5 rev = "5675";
6
7 src = fetchsvn {
8 url = "http://svn.drobilla.net/lad/trunk/ganv";
9 rev = rev;
10 sha256 = "0klzng3jvc09lj4hxnzlb8z5s5qp8rj16b1x1j6hcbqdja54fccj";
11 };
12
13 buildInputs = [ graphviz gtk gtkmm pkgconfig python ];
14
15 configurePhase = "python waf configure --prefix=$out";
16
17 buildPhase = "python waf";
18
19 installPhase = "python waf install";
20
21 meta = with stdenv.lib; {
22 description = "An interactive Gtk canvas widget for graph-based interfaces";
23 homepage = http://drobilla.net;
24 license = licenses.gpl3;
25 maintainers = [ maintainers.goibhniu ];
26 platforms = platforms.linux;
27 };
28}