summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-02-05 10:58:35 +0100
committerPeter Simons <simons@cryp.to>2015-03-09 15:55:22 +0100
commitdb847a334504bed28014c60da1c7fb4395e4369f (patch)
treed829cfc82ed8101b1e19e07291c46a2b668b0350 /pkgs/tools/text
parent0ffb98828e876129eda8c01da288fe676b1fc2a6 (diff)
downloadnixlib-db847a334504bed28014c60da1c7fb4395e4369f.tar
nixlib-db847a334504bed28014c60da1c7fb4395e4369f.tar.gz
nixlib-db847a334504bed28014c60da1c7fb4395e4369f.tar.bz2
nixlib-db847a334504bed28014c60da1c7fb4395e4369f.tar.lz
nixlib-db847a334504bed28014c60da1c7fb4395e4369f.tar.xz
nixlib-db847a334504bed28014c60da1c7fb4395e4369f.tar.zst
nixlib-db847a334504bed28014c60da1c7fb4395e4369f.zip
recode: fix build, needing texinfo now
Also make the build inputs native (no references are retained).
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/recode/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/text/recode/default.nix b/pkgs/tools/text/recode/default.nix
index 21b35682e4e8..bf95125b208a 100644
--- a/pkgs/tools/text/recode/default.nix
+++ b/pkgs/tools/text/recode/default.nix
@@ -1,6 +1,6 @@
 # XXX: this may need -liconv on non-glibc systems.. 
 
-{ stdenv, fetchFromGitHub, python, perl, autoconf, automake, libtool, intltool, flex }:
+{ stdenv, fetchFromGitHub, python, perl, autoconf, automake, libtool, intltool, flex, texinfo }:
 
 stdenv.mkDerivation rec {
   name = "recode-3.7-2fd838565";
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
     sha256 = "06vyjqaraamcc5vka66mlvxj27ihccqc74aymv2wn8nphr2rhh03";
   };
 
-  buildInputs = [ python perl autoconf automake libtool intltool flex ];
+  nativeBuildInputs = [ python perl autoconf automake libtool intltool flex texinfo ];
 
   preConfigure = ''
     # fix build with new automake, https://bugs.gentoo.org/show_bug.cgi?id=419455