libpeas: build developer docs

This commit is contained in:
Jan Tojnar 2022-03-20 06:51:49 +01:00
parent 705068d5e3
commit c82f942efc

View file

@ -5,6 +5,7 @@
, ninja , ninja
, pkg-config , pkg-config
, gettext , gettext
, gi-docgen
, gnome , gnome
, glib , glib
, gtk3 , gtk3
@ -17,7 +18,7 @@ stdenv.mkDerivation rec {
pname = "libpeas"; pname = "libpeas";
version = "1.32.0"; version = "1.32.0";
outputs = [ "out" "dev" ]; outputs = [ "out" "dev" "devdoc" ];
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
@ -29,6 +30,7 @@ stdenv.mkDerivation rec {
meson meson
ninja ninja
gettext gettext
gi-docgen
gobject-introspection gobject-introspection
]; ];
@ -45,6 +47,15 @@ stdenv.mkDerivation rec {
gobject-introspection gobject-introspection
]; ];
mesonFlags = [
"-Dgtk_doc=true"
];
postFixup = ''
# Cannot be in postInstall, otherwise _multioutDocs hook in preFixup will move right back.
moveToOutput "share/doc" "$devdoc"
'';
passthru = { passthru = {
updateScript = gnome.updateScript { updateScript = gnome.updateScript {
packageName = pname; packageName = pname;