diff options
| author | Ben Wolsieffer <lopsided98@users.noreply.github.com> | 2019-04-23 17:27:13 -0400 |
|---|---|---|
| committer | Dmitry Kalinkin <dmitry.kalinkin@gmail.com> | 2019-04-24 05:32:13 -0400 |
| commit | 9fe75ccc795f56acc96123d4983067b1348a18ad (patch) | |
| tree | 7733d3e3b8058d16fd52f13d426d963645706ff0 | |
| parent | de627cdcc964b3a69d6929596d1f0f4390a54609 (diff) | |
gettext: fix cross build (#60123)staging-18.09
(cherry picked from commit 16fe069ef56235ced93c79e832828770bbbd2ef2)
| -rw-r--r-- | pkgs/development/libraries/gettext/default.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/libraries/gettext/default.nix b/pkgs/development/libraries/gettext/default.nix index 76bcaae1dbed..d26d7352fa30 100644 --- a/pkgs/development/libraries/gettext/default.nix +++ b/pkgs/development/libraries/gettext/default.nix @@ -54,11 +54,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ xz xz.bin - ] ++ lib.optional allowBisonDependency [ - # Only necessary for CVE-2018-18751.patch (unless CVE-2018-18751-bison.patch - # is also applied): - bison - ] ++ [ + ] + # Only necessary for CVE-2018-18751.patch (unless CVE-2018-18751-bison.patch + # is also applied): + ++ lib.optional allowBisonDependency bison + ++ [ # Only necessary for CVE-2018-18751.patch: automake115x autoconf |
