nixpkgs/pkgs/development/libraries/ganv/default.nix

29 lines
740 B
Nix
Raw Normal View History

2015-05-03 18:45:52 +03:00
{ stdenv, fetchsvn, graphviz, gtk, gtkmm, pkgconfig, python }:
stdenv.mkDerivation rec {
2015-05-03 18:45:52 +03:00
name = "ganv-svn-${rev}";
rev = "5675";
2015-05-03 18:45:52 +03:00
src = fetchsvn {
url = "http://svn.drobilla.net/lad/trunk/ganv";
rev = rev;
sha256 = "0klzng3jvc09lj4hxnzlb8z5s5qp8rj16b1x1j6hcbqdja54fccj";
};
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 ];
2014-03-09 23:33:35 +04:00
platforms = platforms.linux;
};
}