linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / ganv / default.nix
blobd53206ca667b4b1d69b54bba7fa74c4fe8a93cea
1 { lib, stdenv, fetchgit, graphviz, gtk2, gtkmm2, pkg-config, python3, wafHook }:
3 stdenv.mkDerivation rec {
4   pname = "ganv";
5   version = "unstable-2019-12-30";
7   src = fetchgit {
8     url = "https://gitlab.com/drobilla/${pname}.git";
9     fetchSubmodules = true;
10     rev = "90bd022f8909f92cc5290fdcfc76c626749e1186";
11     sha256 = "01znnalirbqxpz62fbw2c14c8xn117jc92xv6dhb3hln92k9x37f";
12   };
14   nativeBuildInputs = [ pkg-config wafHook python3 gtk2 ];
15   buildInputs = [ graphviz gtkmm2 ];
17   strictDeps = true;
19   meta = with lib; {
20     description = "An interactive Gtk canvas widget for graph-based interfaces";
21     homepage = "http://drobilla.net";
22     license = licenses.gpl3;
23     maintainers = [ maintainers.goibhniu ];
24     platforms = platforms.linux;
25   };
26   }