Merge pull request #45967 from worldofpeace/various-build-fixes/18.09

Various build fixes
This commit is contained in:
xeji
2018-09-03 22:28:06 +02:00
committed by GitHub
9 changed files with 256 additions and 38 deletions

View File

@@ -11,8 +11,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ automake autoconf which gnome3.vala libtool pkgconfig gobjectIntrospection ];
buildInputs = [ graphviz glib gnome3.libgee expat ];
preConfigure = "./autogen.sh";
passthru = {
updateScript = gnome3.updateScript {
packageName = "valadoc";
@@ -20,10 +18,10 @@ stdenv.mkDerivation rec {
};
meta = with stdenv.lib; {
description = "valadoc is a documentation generator for generating API documentation from Vala source code";
homepage = https://valadoc.org;
license = stdenv.lib.licenses.gpl2;
description = "A documentation generator for generating API documentation from Vala source code";
homepage = https://valadoc.org;
license = licenses.gpl2;
maintainers = with maintainers; [ sternenseemann ];
platforms = with platforms; linux;
platforms = platforms.linux;
};
}