mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
add ganv: An interactive Gtk canvas widget for graph-based interfaces
This commit is contained in:
parent
acd2064859
commit
f6104c8882
27
pkgs/development/libraries/ganv/default.nix
Normal file
27
pkgs/development/libraries/ganv/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -4161,6 +4161,8 @@ let
|
||||
|
||||
gamin = callPackage ../development/libraries/gamin { };
|
||||
|
||||
ganv = callPackage ../development/libraries/ganv { };
|
||||
|
||||
gav = callPackage ../games/gav { };
|
||||
|
||||
gsb = callPackage ../games/gsb { };
|
||||
|
Loading…
Reference in New Issue
Block a user