nixpkgs/pkgs/development/tools/valadoc/default.nix

28 lines
943 B
Nix
Raw Normal View History

2018-03-14 13:51:29 +01:00
{stdenv, fetchurl, gnome3, automake, autoconf, which, libtool, pkgconfig, graphviz, glib, gobjectIntrospection, expat}:
2016-10-09 21:31:50 +02:00
stdenv.mkDerivation rec {
2018-03-14 13:51:29 +01:00
version = "0.36.1";
name = "valadoc-${version}";
2016-10-09 21:31:50 +02:00
2018-03-14 13:51:29 +01:00
src = fetchurl {
url = "mirror://gnome/sources/valadoc/${gnome3.versionBranch version}/${name}.tar.xz";
sha256 = "07501k2j9c016bd7rfr6xzaxdplq7j9sd18b5ixbqdbipvn6whnv";
2016-10-09 21:31:50 +02:00
};
nativeBuildInputs = [ automake autoconf which gnome3.vala libtool pkgconfig gobjectIntrospection ];
buildInputs = [ graphviz glib gnome3.libgee expat ];
2016-10-09 21:31:50 +02:00
2018-03-14 13:51:29 +01:00
passthru = {
updateScript = gnome3.updateScript {
packageName = "valadoc";
};
};
2016-10-09 21:31:50 +02:00
meta = with stdenv.lib; {
2018-09-03 00:50:40 +02:00
description = "A documentation generator for generating API documentation from Vala source code";
homepage = https://valadoc.org;
license = licenses.gpl2;
2016-10-09 21:31:50 +02:00
maintainers = with maintainers; [ sternenseemann ];
2018-09-03 00:50:40 +02:00
platforms = platforms.linux;
2016-10-09 21:31:50 +02:00
};
}