haskell-rfc5051: run this build in LANG=en_US.UTF-8 environment

Otherwise, Haddock cannot generate the reference documentation.
This commit is contained in:
Peter Simons 2013-09-18 17:54:41 +02:00
parent 10e74cdee3
commit f2a9f9b588

View File

@ -1,4 +1,4 @@
{ cabal }:
{ cabal, glibcLocales }:
cabal.mkDerivation (self: {
pname = "rfc5051";
@ -6,6 +6,8 @@ cabal.mkDerivation (self: {
sha256 = "0j009h78gw92bl61g0js6xkah76lb6gm0lv55z2sw6gxm4a1ygml";
isLibrary = true;
isExecutable = true;
preConfigure = "export LANG=en_US.UTF-8"
+ self.stdenv.lib.optionalString self.stdenv.isLinux " LOCALE_ARCHIVE=${glibcLocales}/lib/locale/locale-archive";
meta = {
description = "Simple unicode collation as per RFC5051";
license = self.stdenv.lib.licenses.bsd3;