Move gnome-doc-utils and gtk-doc to top-level

Add compatibility attrs.

svn path=/nixpkgs/branches/glib-2.30-take2/; revision=33252
This commit is contained in:
Yury G. Kudryashov
2012-03-19 04:36:41 +00:00
parent 066896556f
commit 3d0b778848
4 changed files with 16 additions and 16 deletions
@@ -0,0 +1,17 @@
{stdenv, fetchurl, python, pkgconfig, libxml2Python, libxslt, intltool
, makeWrapper, pythonPackages }:
stdenv.mkDerivation {
name = "gnome-doc-utils-0.20.7";
src = fetchurl {
url = mirror://gnome/sources/gnome-doc-utils/0.20/gnome-doc-utils-0.20.7.tar.xz;
sha256 = "01lcq6gm4q9awvg7lccq43qh8g4ibz49s2mgykin78mgph9h396q";
};
configureFlags = "--disable-scrollkeeper";
buildInputs = [ python libxml2Python libxslt ];
postInstall = "wrapPythonPrograms";
buildNativeInputs = [ pkgconfig intltool pythonPackages.wrapPython ];
}