cataclysm-dda-git: install missing translations

Using gettext without translation files is just like driving a car without wheels.
This commit is contained in:
Mitsuhiro Nakamura 2018-01-23 00:13:10 +09:00
parent ee6086c31d
commit bd9b51f4df
2 changed files with 2 additions and 0 deletions

View file

@ -31,6 +31,7 @@ stdenv.mkDerivation rec {
makeFlags = [
"PREFIX=$(out) LUA=1 TILES=1 SOUND=1 RELEASE=1 USE_HOME_DIR=1"
# "LANGUAGES=all" # vanilla C:DDA installs all translations even without this flag!
] ++ stdenv.lib.optionals stdenv.isDarwin [
"NATIVE=osx CLANG=1"
"OSX_MIN=10.6" # SDL for macOS only supports deploying on 10.6 and above

View file

@ -30,6 +30,7 @@ stdenv.mkDerivation rec {
makeFlags = [
"PREFIX=$(out) LUA=1 TILES=1 SOUND=1 RELEASE=1 USE_HOME_DIR=1"
"LANGUAGES=all"
] ++ stdenv.lib.optionals stdenv.isDarwin [
"NATIVE=osx CLANG=1"
];