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 {
|
2012-03-19 05:36:41 +01:00
|
|
|
name = "gnome-doc-utils-0.20.7";
|
2012-03-09 00:15:51 +01:00
|
|
|
|
2009-09-30 07:27:34 +02:00
|
|
|
src = fetchurl {
|
2012-03-19 05:36:41 +01:00
|
|
|
url = mirror://gnome/sources/gnome-doc-utils/0.20/gnome-doc-utils-0.20.7.tar.xz;
|
|
|
|
sha256 = "01lcq6gm4q9awvg7lccq43qh8g4ibz49s2mgykin78mgph9h396q";
|
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";
|
|
|
|
|
|
|
|
buildNativeInputs = [ pkgconfig intltool pythonPackages.wrapPython ];
|
2009-09-30 07:27:34 +02:00
|
|
|
}
|