2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchgit, graphviz, gtk2, gtkmm2, pkg-config, python, wafHook }:
|
2014-03-09 10:20:45 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-01-20 02:22:20 -08:00
|
|
|
pname = "ganv";
|
|
|
|
version = "unstable-2019-12-30";
|
2014-03-09 10:20:45 -07:00
|
|
|
|
2016-11-07 05:19:02 -08:00
|
|
|
src = fetchgit {
|
2020-01-20 02:22:20 -08:00
|
|
|
url = "https://gitlab.com/drobilla/${pname}.git";
|
|
|
|
fetchSubmodules = true;
|
|
|
|
rev = "90bd022f8909f92cc5290fdcfc76c626749e1186";
|
|
|
|
sha256 = "01znnalirbqxpz62fbw2c14c8xn117jc92xv6dhb3hln92k9x37f";
|
2014-03-09 10:20:45 -07:00
|
|
|
};
|
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ pkg-config wafHook ];
|
2017-09-05 14:26:13 -07:00
|
|
|
buildInputs = [ graphviz gtk2 gtkmm2 python ];
|
2014-03-09 10:20:45 -07:00
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2014-03-09 10:20:45 -07:00
|
|
|
description = "An interactive Gtk canvas widget for graph-based interfaces";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://drobilla.net";
|
2014-03-09 10:20:45 -07:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
2014-03-09 12:33:35 -07:00
|
|
|
platforms = platforms.linux;
|
2014-03-09 10:20:45 -07:00
|
|
|
};
|
2020-01-20 02:22:20 -08:00
|
|
|
}
|