Skip to content

Commit

Permalink
sword: fixup build with icu >= 61
Browse files Browse the repository at this point in the history
  • Loading branch information
vcunat committed Jun 5, 2019
1 parent 576af17 commit 0d29488
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pkgs/development/libraries/sword/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ stdenv.mkDerivation rec {
})
];

configureFlags = [ "--without-conf" "--enable-tests=no CXXFLAGS=-Wno-unused-but-set-variable" ];
configureFlags = [ "--without-conf" "--enable-tests=no" ];
CXXFLAGS = [
"-Wno-unused-but-set-variable"
# compat with icu61+ https://github.com/unicode-org/icu/blob/release-64-2/icu4c/readme.html#L554
"-DU_USING_ICU_NAMESPACE=1"
];

meta = with stdenv.lib; {
description = "A software framework that allows research manipulation of Biblical texts";
Expand Down

0 comments on commit 0d29488

Please sign in to comment.