nixpkgs/pkgs/development/tools/documentation/gnome-doc-utils/default.nix
Eelco Dolstra ab3eeabfed Rename buildNativeInputs -> nativeBuildInputs
Likewise for propagatedBuildNativeInputs, etc.  "buildNativeInputs"
sounds like an imperative rather than a noun phrase.
2012-12-28 19:20:09 +01:00

19 lines
584 B
Nix

{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 ];
pythonPath = [ libxml2Python ];
postInstall = "wrapPythonPrograms";
nativeBuildInputs = [ pkgconfig intltool pythonPackages.wrapPython ];
}