release.nix: Add dependency on GNU Texinfo.
* release.nix (tarball)[buildNativeInputs]: Add `texinfo'.master
parent
91133c2d71
commit
8587b54268
|
@ -29,7 +29,7 @@ let
|
||||||
name = "guix-tarball";
|
name = "guix-tarball";
|
||||||
src = <guix>;
|
src = <guix>;
|
||||||
buildInputs = with pkgs; [ guile ];
|
buildInputs = with pkgs; [ guile ];
|
||||||
buildNativeInputs = with pkgs; [ gettext cvs pkgconfig ];
|
buildNativeInputs = with pkgs; [ texinfo gettext cvs pkgconfig ];
|
||||||
configureFlags =
|
configureFlags =
|
||||||
[ "--with-nixpkgs=${nixpkgs}" "--with-nix-prefix=${pkgs.nix}" ];
|
[ "--with-nixpkgs=${nixpkgs}" "--with-nix-prefix=${pkgs.nix}" ];
|
||||||
};
|
};
|
||||||
|
|
Reference in New Issue