2012-03-08 15:15:51 -08:00
|
|
|
{stdenv, fetchurl, python, pkgconfig, libxml2Python, libxslt, intltool
|
|
|
|
, makeWrapper, pythonPackages }:
|
2009-09-29 22:27:34 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2012-03-18 21:36:41 -07:00
|
|
|
name = "gnome-doc-utils-0.20.7";
|
2012-03-08 15:15:51 -08:00
|
|
|
|
2009-09-29 22:27:34 -07:00
|
|
|
src = fetchurl {
|
2012-03-18 21:36:41 -07:00
|
|
|
url = mirror://gnome/sources/gnome-doc-utils/0.20/gnome-doc-utils-0.20.7.tar.xz;
|
|
|
|
sha256 = "01lcq6gm4q9awvg7lccq43qh8g4ibz49s2mgykin78mgph9h396q";
|
2009-09-29 22:27:34 -07:00
|
|
|
};
|
2012-03-08 15:15:51 -08:00
|
|
|
|
2009-09-29 22:27:34 -07:00
|
|
|
configureFlags = "--disable-scrollkeeper";
|
2012-03-08 15:15:51 -08:00
|
|
|
buildInputs = [ python libxml2Python libxslt ];
|
2012-03-31 12:50:54 -07:00
|
|
|
pythonPath = [ libxml2Python ];
|
2012-03-08 15:15:51 -08:00
|
|
|
postInstall = "wrapPythonPrograms";
|
|
|
|
|
2012-12-28 10:20:09 -08:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool pythonPackages.wrapPython ];
|
2009-09-29 22:27:34 -07:00
|
|
|
}
|