summary refs log tree commit diff
path: root/pkgs/development/libraries/gettext
diff options
context:
space:
mode:
authorBen Wolsieffer <lopsided98@users.noreply.github.com>2019-04-23 17:27:13 -0400
committerDmitry Kalinkin <dmitry.kalinkin@gmail.com>2019-04-23 14:27:13 -0700
commit16fe069ef56235ced93c79e832828770bbbd2ef2 (patch)
tree6faf1cc391b3aa0044bc35a8d17b835ccceeb5e7 /pkgs/development/libraries/gettext
parentca37c23f91f086fe3fb152626bf869f9e420bf0e (diff)
downloadnixpkgs-16fe069ef56235ced93c79e832828770bbbd2ef2.tar
nixpkgs-16fe069ef56235ced93c79e832828770bbbd2ef2.tar.gz
nixpkgs-16fe069ef56235ced93c79e832828770bbbd2ef2.tar.bz2
nixpkgs-16fe069ef56235ced93c79e832828770bbbd2ef2.tar.lz
nixpkgs-16fe069ef56235ced93c79e832828770bbbd2ef2.tar.xz
nixpkgs-16fe069ef56235ced93c79e832828770bbbd2ef2.tar.zst
nixpkgs-16fe069ef56235ced93c79e832828770bbbd2ef2.zip
gettext: fix cross build (#60123)
Diffstat (limited to 'pkgs/development/libraries/gettext')
-rw-r--r--pkgs/development/libraries/gettext/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/libraries/gettext/default.nix b/pkgs/development/libraries/gettext/default.nix
index 75d1eec25f6..6eb8bae435b 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