2017-10-06 23:07:40 +01:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, pkgconfig, perl, python, libxml2Python, libxslt, which
|
2014-10-05 21:50:22 +01:00
|
|
|
, docbook_xml_dtd_43, docbook_xsl, gnome_doc_utils, dblatex, gettext, itstool }:
|
2009-09-30 06:27:34 +01:00
|
|
|
|
2014-10-05 21:50:22 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "gtk-doc-${version}";
|
2016-03-23 23:07:12 +00:00
|
|
|
version = "1.25";
|
2012-03-19 04:36:41 +00:00
|
|
|
|
2009-09-30 06:27:34 +01:00
|
|
|
src = fetchurl {
|
2014-10-05 21:50:22 +01:00
|
|
|
url = "mirror://gnome/sources/gtk-doc/${version}/${name}.tar.xz";
|
2016-03-23 23:07:12 +00:00
|
|
|
sha256 = "0hpxcij9xx9ny3gs9p0iz4r8zslw8wqymbyababiyl7603a6x90y";
|
2009-09-30 06:27:34 +01:00
|
|
|
};
|
2010-05-27 14:08:21 +01:00
|
|
|
|
2017-10-06 23:07:40 +01:00
|
|
|
patches = [
|
|
|
|
./respect-xml-catalog-files-var.patch
|
|
|
|
];
|
2009-09-30 06:27:34 +01:00
|
|
|
|
2017-10-06 23:07:40 +01:00
|
|
|
outputDevdoc = "out";
|
2009-09-30 06:27:34 +01:00
|
|
|
|
2017-10-06 23:07:40 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2010-05-27 14:08:21 +01:00
|
|
|
buildInputs =
|
2012-03-19 04:36:41 +00:00
|
|
|
[ pkgconfig perl python libxml2Python libxslt docbook_xml_dtd_43 docbook_xsl
|
2014-10-05 21:50:22 +01:00
|
|
|
gnome_doc_utils dblatex gettext which itstool
|
2010-05-27 14:08:21 +01:00
|
|
|
];
|
2014-10-05 21:50:22 +01:00
|
|
|
|
2017-10-06 23:07:40 +01:00
|
|
|
configureFlags = "--disable-scrollkeeper";
|
|
|
|
|
2014-10-05 21:50:22 +01:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-02 22:50:51 +01:00
|
|
|
homepage = https://www.gtk.org/gtk-doc;
|
2014-10-05 21:50:22 +01:00
|
|
|
description = "Tools to extract documentation embedded in GTK+ and GNOME source code";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
};
|
2009-09-30 06:27:34 +01:00
|
|
|
}
|