gobject-introspection: add docs
This commit is contained in:
parent
e4a009a109
commit
fd5ea9d5f2
|
@ -5,6 +5,10 @@
|
||||||
, bison
|
, bison
|
||||||
, meson
|
, meson
|
||||||
, ninja
|
, ninja
|
||||||
|
, gtk-doc
|
||||||
|
, docbook-xsl-nons
|
||||||
|
, docbook_xml_dtd_43
|
||||||
|
, docbook_xml_dtd_45
|
||||||
, pkg-config
|
, pkg-config
|
||||||
, libffi
|
, libffi
|
||||||
, python3
|
, python3
|
||||||
|
@ -26,7 +30,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
# outputs TODO: share/gobject-introspection-1.0/tests is needed during build
|
# outputs TODO: share/gobject-introspection-1.0/tests is needed during build
|
||||||
# by pygobject3 (and maybe others), but it's only searched in $out
|
# by pygobject3 (and maybe others), but it's only searched in $out
|
||||||
outputs = [ "out" "dev" "man" ];
|
outputs = [ "out" "dev" "devdoc" "man" ];
|
||||||
outputBin = "dev";
|
outputBin = "dev";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
|
@ -55,6 +59,10 @@ stdenv.mkDerivation rec {
|
||||||
meson
|
meson
|
||||||
ninja
|
ninja
|
||||||
pkg-config
|
pkg-config
|
||||||
|
gtk-doc
|
||||||
|
docbook-xsl-nons
|
||||||
|
docbook_xml_dtd_43
|
||||||
|
docbook_xml_dtd_45
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
@ -75,6 +83,7 @@ stdenv.mkDerivation rec {
|
||||||
"--datadir=${placeholder "dev"}/share"
|
"--datadir=${placeholder "dev"}/share"
|
||||||
"-Ddoctool=disabled"
|
"-Ddoctool=disabled"
|
||||||
"-Dcairo=disabled"
|
"-Dcairo=disabled"
|
||||||
|
"-Dgtk_doc=true"
|
||||||
];
|
];
|
||||||
|
|
||||||
doCheck = !stdenv.isAarch64;
|
doCheck = !stdenv.isAarch64;
|
||||||
|
|
Loading…
Reference in New Issue