summaryrefslogtreecommitdiff
path: root/release.nix
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-10-17 16:16:45 +0200
committerLudovic Courtès <ludo@gnu.org>2012-10-17 16:16:45 +0200
commit8587b54268f47a63f4a52f3b520fa9beabec51d8 (patch)
tree09c5d6b7977a522bb8b2615554f3143183facfe6 /release.nix
parent91133c2d71960644eeba749027a4141c098ea64c (diff)
downloadgnu-guix-8587b54268f47a63f4a52f3b520fa9beabec51d8.tar
gnu-guix-8587b54268f47a63f4a52f3b520fa9beabec51d8.tar.gz
release.nix: Add dependency on GNU Texinfo.
* release.nix (tarball)[buildNativeInputs]: Add `texinfo'.
Diffstat (limited to 'release.nix')
-rw-r--r--release.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/release.nix b/release.nix
index 02a61f65d5..b65cf7533a 100644
--- a/release.nix
+++ b/release.nix
@@ -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}" ];
};