2021-01-25 09:26:54 +01:00
|
|
|
{ lib, fetchurl, pkg-config, libxml2Python, libxslt, intltool, gnome3
|
2018-07-21 00:44:44 +00:00
|
|
|
, python2Packages }:
|
2009-09-30 05:27:34 +00:00
|
|
|
|
2019-04-25 08:46:07 +02:00
|
|
|
python2Packages.buildPythonApplication rec {
|
|
|
|
pname = "gnome-doc-utils";
|
|
|
|
version = "0.20.10";
|
|
|
|
|
2017-03-21 13:01:17 +01:00
|
|
|
format = "other";
|
2012-03-08 23:15:51 +00:00
|
|
|
|
2009-09-30 05:27:34 +00:00
|
|
|
src = fetchurl {
|
2021-01-23 19:26:19 +07:00
|
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2013-12-11 10:20:20 +02:00
|
|
|
sha256 = "19n4x25ndzngaciiyd8dd6s2mf9gv6nv3wv27ggns2smm7zkj1nb";
|
2009-09-30 05:27:34 +00:00
|
|
|
};
|
2012-03-08 23:15:51 +00:00
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ intltool pkg-config libxslt.dev ];
|
2017-09-12 21:02:03 -04:00
|
|
|
buildInputs = [ libxslt ];
|
|
|
|
|
2018-07-25 17:44:21 -04:00
|
|
|
configureFlags = [ "--disable-scrollkeeper" ];
|
2017-09-12 21:02:03 -04:00
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
substituteInPlace xml2po/xml2po/Makefile --replace '-e "s+^#!.*python.*+#!$(PYTHON)+"' '-e "s\"^#!.*python.*\"#!$(PYTHON)\""'
|
|
|
|
'';
|
|
|
|
|
2016-10-18 12:25:20 +02:00
|
|
|
propagatedBuildInputs = [ libxml2Python ];
|
2019-04-25 08:46:07 +02:00
|
|
|
|
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-11-01 01:20:45 +01:00
|
|
|
postFixup = ''
|
|
|
|
# Do not propagate Python
|
|
|
|
rm $out/nix-support/propagated-build-inputs
|
|
|
|
'';
|
|
|
|
|
2021-01-23 19:26:19 +07:00
|
|
|
meta = with lib; {
|
2019-05-04 15:59:55 +02:00
|
|
|
description = "Collection of documentation utilities for the GNOME project";
|
|
|
|
homepage = "https://gitlab.gnome.org/GNOME/gnome-doc-utils";
|
2019-04-25 08:46:07 +02:00
|
|
|
license = with licenses; [ gpl2Plus lgpl2Plus ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
2009-09-30 05:27:34 +00:00
|
|
|
}
|