summary refs log tree commit diff
path: root/pkgs/development/tools/valadoc/default.nix
blob: 7d4e61c87995756236dc8a7db95419c525ef9b7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{stdenv, fetchgit, gnome3, automake, autoconf, which, libtool, pkgconfig, graphviz, glib, gobjectIntrospection, expat}:
stdenv.mkDerivation rec {
  version = "2016-10-09";
  name = "valadoc-unstable-${version}";

  src = fetchgit {
    url = "git://git.gnome.org/valadoc";
    rev = "37756970379d1363453562e9f2af2c354d172fb4";
    sha256 = "1s9sf6f0srh5sqqikswnb3bgwv5s1r9bd4n10hs2lzfmh7z227qb";
  };

  nativeBuildInputs = [ automake autoconf which gnome3.vala libtool pkgconfig gobjectIntrospection ];
  buildInputs = [ graphviz glib gnome3.libgee expat ];

  preConfigure = "./autogen.sh";

  meta = with stdenv.lib; {
    description = "valadoc is a documentation generator for generating API documentation from Vala source code";
    homepage = http://valadoc.org;
    license = stdenv.lib.licenses.gpl2;
    maintainers = with maintainers; [ sternenseemann ];
    platforms = with platforms; linux;
  };
}