summary refs log tree commit diff
path: root/pkgs/tools/text/recode
diff options
context:
space:
mode:
authorMatthew Justin Bauer <mjbauer95@gmail.com>2018-03-25 23:36:14 -0500
committerGitHub <noreply@github.com>2018-03-25 23:36:14 -0500
commit1eda88c3bf58f1705faf46e268ac7cc268c18fa3 (patch)
treeec79db2e58b3b0dcbc42927126c40be59983961b /pkgs/tools/text/recode
parentea1ba075a850cdbaaef11263b30097dfb0efcf14 (diff)
downloadnixpkgs-1eda88c3bf58f1705faf46e268ac7cc268c18fa3.tar
nixpkgs-1eda88c3bf58f1705faf46e268ac7cc268c18fa3.tar.gz
nixpkgs-1eda88c3bf58f1705faf46e268ac7cc268c18fa3.tar.bz2
nixpkgs-1eda88c3bf58f1705faf46e268ac7cc268c18fa3.tar.lz
nixpkgs-1eda88c3bf58f1705faf46e268ac7cc268c18fa3.tar.xz
nixpkgs-1eda88c3bf58f1705faf46e268ac7cc268c18fa3.tar.zst
nixpkgs-1eda88c3bf58f1705faf46e268ac7cc268c18fa3.zip
recode: fix libintl issue
should resolve https://hydra.nixos.org/build/71918435/nixlog/1
Diffstat (limited to 'pkgs/tools/text/recode')
-rw-r--r--pkgs/tools/text/recode/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/text/recode/default.nix b/pkgs/tools/text/recode/default.nix
index 9cc09a70210..9946da614c7 100644
--- a/pkgs/tools/text/recode/default.nix
+++ b/pkgs/tools/text/recode/default.nix
@@ -11,7 +11,8 @@ stdenv.mkDerivation rec {
     sha256 = "06vyjqaraamcc5vka66mlvxj27ihccqc74aymv2wn8nphr2rhh03";
   };
 
-  nativeBuildInputs = [ python perl intltool flex texinfo autoreconfHook libiconv libintl ];
+  nativeBuildInputs = [ python perl intltool flex texinfo autoreconfHook libiconv ];
+  buildInputs = [ libintl ];
 
   preAutoreconf = ''
     # fix build with new automake, https://bugs.gentoo.org/show_bug.cgi?id=419455