gnome-builder: ensure gtkdoc can find docbook DTDs

This commit is contained in:
Jamey Sharp 2018-07-30 23:05:11 -07:00
parent e32a5dafaf
commit 3a64f5790e

View File

@ -1,8 +1,10 @@
{ stdenv { stdenv
, desktop-file-utils , desktop-file-utils
, docbook_xsl , docbook_xsl
, docbook_xml_dtd_43
, fetchurl , fetchurl
, flatpak , flatpak
, glibcLocales
, gnome3 , gnome3
, gobjectIntrospection , gobjectIntrospection
, gspell , gspell
@ -41,6 +43,8 @@ in stdenv.mkDerivation {
#appstream-glib # tests fail if these tools are available #appstream-glib # tests fail if these tools are available
desktop-file-utils desktop-file-utils
docbook_xsl docbook_xsl
docbook_xml_dtd_43
glibcLocales # for Meson's gtkdochelper
gobjectIntrospection gobjectIntrospection
gtk-doc gtk-doc
hicolor-icon-theme hicolor-icon-theme
@ -91,6 +95,10 @@ in stdenv.mkDerivation {
"-Dwith_docs=true" "-Dwith_docs=true"
]; ];
preInstall = ''
export LC_ALL="en_US.utf-8"
'';
pythonPath = with python3.pkgs; requiredPythonModules [ pygobject3 ]; pythonPath = with python3.pkgs; requiredPythonModules [ pygobject3 ];
preFixup = '' preFixup = ''