2012-03-09 00:15:51 +01:00
|
|
|
{stdenv, fetchurl, python, pkgconfig, libxml2Python, libxslt, intltool
|
|
|
|
, makeWrapper, pythonPackages }:
|
2009-09-30 07:27:34 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2013-12-11 09:20:20 +01:00
|
|
|
name = "gnome-doc-utils-0.20.10";
|
2012-03-09 00:15:51 +01:00
|
|
|
|
2009-09-30 07:27:34 +02:00
|
|
|
src = fetchurl {
|
2013-12-11 09:20:20 +01:00
|
|
|
url = mirror://gnome/sources/gnome-doc-utils/0.20/gnome-doc-utils-0.20.10.tar.xz;
|
|
|
|
sha256 = "19n4x25ndzngaciiyd8dd6s2mf9gv6nv3wv27ggns2smm7zkj1nb";
|
2009-09-30 07:27:34 +02:00
|
|
|
};
|
2012-03-09 00:15:51 +01:00
|
|
|
|
2009-09-30 07:27:34 +02:00
|
|
|
configureFlags = "--disable-scrollkeeper";
|
2012-03-09 00:15:51 +01:00
|
|
|
buildInputs = [ python libxml2Python libxslt ];
|
2012-03-31 21:50:54 +02:00
|
|
|
pythonPath = [ libxml2Python ];
|
2012-03-09 00:15:51 +01:00
|
|
|
postInstall = "wrapPythonPrograms";
|
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool pythonPackages.wrapPython ];
|
2009-09-30 07:27:34 +02:00
|
|
|
}
|