add ganv: An interactive Gtk canvas widget for graph-based interfaces

This commit is contained in:
Cillian de Róiste 2014-03-09 18:20:45 +01:00
parent acd2064859
commit f6104c8882
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ stdenv, fetchsvn, graphviz, gtk, gtkmm, pkgconfig, python }:
stdenv.mkDerivation rec {
name = "ganv-svn-${rev}";
rev = "5318";
src = fetchsvn {
url = "http://svn.drobilla.net/lad/trunk/ganv";
rev = rev;
sha256 = "0wi87ks2xjma979d9hy82wmlm06g4sr0pm3b1n3zv27y52wrf7fl";
};
buildInputs = [ graphviz gtk gtkmm pkgconfig python ];
configurePhase = "python waf configure --prefix=$out";
buildPhase = "python waf";
installPhase = "python waf install";
meta = with stdenv.lib; {
description = "An interactive Gtk canvas widget for graph-based interfaces";
homepage = http://drobilla.net;
license = licenses.gpl3;
maintainers = [ maintainers.goibhniu ];
};
}

View file

@ -4161,6 +4161,8 @@ let
gamin = callPackage ../development/libraries/gamin { };
ganv = callPackage ../development/libraries/ganv { };
gav = callPackage ../games/gav { };
gsb = callPackage ../games/gsb { };