Skip to content

Commit

Permalink
nixos/fhsUserenv: make all locales available
Browse files Browse the repository at this point in the history
  • Loading branch information
bachp committed Apr 2, 2019
1 parent e23f1a2 commit 977d1d8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pkgs/build-support/build-fhs-userenv/env.nix
Expand Up @@ -36,12 +36,14 @@ let

# base packages of the chroot
# these match the host's architecture, glibc_multi is used for multilib
# builds.
# builds. glibcLocales must be before glibc or glibc_multi as otherwiese
# the wrong LOCALE_ARCHIVE will be used where only C.UTF-8 is available.
basePkgs = with pkgs;
[ (if isMultiBuild then glibc_multi else glibc)
[ glibcLocales
(if isMultiBuild then glibc_multi else glibc)
(toString gcc.cc.lib) bashInteractive coreutils less shadow su
gawk diffutils findutils gnused gnugrep
gnutar gzip bzip2 xz glibcLocales
gnutar gzip bzip2 xz
];
baseMultiPkgs = with pkgsi686Linux;
[ (toString gcc.cc.lib)
Expand Down

0 comments on commit 977d1d8

Please sign in to comment.