release.nix: Add dependency on GNU Texinfo.

* release.nix (tarball)[buildNativeInputs]: Add `texinfo'.
master
Ludovic Courtès 2012-10-17 16:16:45 +02:00
parent 91133c2d71
commit 8587b54268
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ let
name = "guix-tarball";
src = <guix>;
buildInputs = with pkgs; [ guile ];
buildNativeInputs = with pkgs; [ gettext cvs pkgconfig ];
buildNativeInputs = with pkgs; [ texinfo gettext cvs pkgconfig ];
configureFlags =
[ "--with-nixpkgs=${nixpkgs}" "--with-nix-prefix=${pkgs.nix}" ];
};