diff --git a/pkgs/by-name/he/hello/package.nix b/pkgs/by-name/he/hello/package.nix index e0b688917e46..3a9966200bf7 100644 --- a/pkgs/by-name/he/hello/package.nix +++ b/pkgs/by-name/he/hello/package.nix @@ -7,6 +7,7 @@ testers, versionCheckHook, hello, + gettext, gnulib, }: @@ -30,6 +31,10 @@ stdenv.mkDerivation (finalAttrs: { NIX_LDFLAGS = "-liconv"; }; + buildInputs = lib.optionals stdenv.hostPlatform.isFreeBSD [ + gettext + ]; + doCheck = true; doInstallCheck = true;