fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{stdenv, fetchurl, gnome3, automake, autoconf, which, libtool, pkgconfig, graphviz, glib, gobjectIntrospection, expat}:
2stdenv.mkDerivation rec {
3 version = "0.36.1";
4 name = "valadoc-${version}";
5
6 src = fetchurl {
7 url = "mirror://gnome/sources/valadoc/${gnome3.versionBranch version}/${name}.tar.xz";
8 sha256 = "07501k2j9c016bd7rfr6xzaxdplq7j9sd18b5ixbqdbipvn6whnv";
9 };
10
11 nativeBuildInputs = [ automake autoconf which gnome3.vala libtool pkgconfig gobjectIntrospection ];
12 buildInputs = [ graphviz glib gnome3.libgee expat ];
13
14 preConfigure = "./autogen.sh";
15
16 passthru = {
17 updateScript = gnome3.updateScript {
18 packageName = "valadoc";
19 };
20 };
21
22 meta = with stdenv.lib; {
23 description = "valadoc is a documentation generator for generating API documentation from Vala source code";
24 homepage = https://valadoc.org;
25 license = stdenv.lib.licenses.gpl2;
26 maintainers = with maintainers; [ sternenseemann ];
27 platforms = with platforms; linux;
28 };
29}