mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 03:25:02 +00:00
62e029cc2b
We can't use shell scripts as shebangs so we drop using .withPackages and just add pygments to the build env to satiate meson's checks. https://github.com/NixOS/nixpkgs/pull/71221#issuecomment-543372945
82 lines
1.9 KiB
Nix
82 lines
1.9 KiB
Nix
{ stdenv
|
|
, fetchFromGitLab
|
|
, meson
|
|
, ninja
|
|
, pkgconfig
|
|
, python3
|
|
, libxml2Python
|
|
, docbook_xml_dtd_43
|
|
, docbook_xsl
|
|
, libxslt
|
|
, gettext
|
|
, gnome3
|
|
, withDblatex ? false, dblatex
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gtk-doc";
|
|
version = "1.32";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.gnome.org";
|
|
owner = "GNOME";
|
|
repo = pname;
|
|
rev = "GTK_DOC_${stdenv.lib.replaceStrings ["."] ["_"] version }";
|
|
sha256 = "14fihxj662gg4ln1ngff6s52zzkpbcc58qa0nxysxypnhp0h4ypk";
|
|
};
|
|
|
|
patches = [
|
|
passthru.respect_xml_catalog_files_var_patch
|
|
];
|
|
|
|
outputDevdoc = "out";
|
|
|
|
nativeBuildInputs = [
|
|
gettext
|
|
meson
|
|
ninja
|
|
];
|
|
|
|
buildInputs = [
|
|
docbook_xml_dtd_43
|
|
docbook_xsl
|
|
libxslt
|
|
pkgconfig
|
|
python3
|
|
python3.pkgs.pygments # Needed for https://gitlab.gnome.org/GNOME/gtk-doc/blob/GTK_DOC_1_32/meson.build#L42
|
|
libxml2Python
|
|
]
|
|
++ stdenv.lib.optional withDblatex dblatex
|
|
;
|
|
|
|
mesonFlags = [
|
|
"-Dtests=false"
|
|
"-Dyelp_manual=false"
|
|
];
|
|
|
|
# Make pygments available for binaries, python.withPackages creates a wrapper
|
|
# but scripts are not allowed in shebangs so we link it into sys.path.
|
|
postInstall = ''
|
|
ln -s ${python3.pkgs.pygments}/${python3.sitePackages}/* $out/share/gtk-doc/python/
|
|
'';
|
|
|
|
doCheck = false; # requires a lot of stuff
|
|
doInstallCheck = false; # fails
|
|
|
|
passthru = {
|
|
# Consumers are expected to copy the m4 files to their source tree, let them reuse the patch
|
|
respect_xml_catalog_files_var_patch = ./respect-xml-catalog-files-var.patch;
|
|
updateScript = gnome3.updateScript {
|
|
packageName = pname;
|
|
versionPolicy = "none";
|
|
};
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Tools to extract documentation embedded in GTK and GNOME source code";
|
|
homepage = "https://www.gtk.org/gtk-doc";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ pSub worldofpeace ];
|
|
};
|
|
}
|