From 1eda88c3bf58f1705faf46e268ac7cc268c18fa3 Mon Sep 17 00:00:00 2001 From: Matthew Justin Bauer Date: Sun, 25 Mar 2018 23:36:14 -0500 Subject: [PATCH] recode: fix libintl issue should resolve https://hydra.nixos.org/build/71918435/nixlog/1 --- pkgs/tools/text/recode/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/text/recode/default.nix b/pkgs/tools/text/recode/default.nix index 9cc09a702102..9946da614c71 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