mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
perlPackages.TextWrapI18N: Fix glibc path
Glibc is the one exception where ${glibc}/bin doesn't work (as the more common usage is ${glibc}/lib-ld-linux.so.2)...
This commit is contained in:
parent
6bf0a984ef
commit
1862a9a4fb
1 changed files with 1 additions and 1 deletions
|
@ -13829,7 +13829,7 @@ let self = _self // overrides; _self = with self; {
|
||||||
};
|
};
|
||||||
propagatedBuildInputs = [ pkgs.glibc TextCharWidth ];
|
propagatedBuildInputs = [ pkgs.glibc TextCharWidth ];
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
substituteInPlace WrapI18N.pm --replace '/usr/bin/locale' '${pkgs.glibc}/bin/locale'
|
substituteInPlace WrapI18N.pm --replace '/usr/bin/locale' '${pkgs.glibc.bin}/bin/locale'
|
||||||
'';
|
'';
|
||||||
meta = {
|
meta = {
|
||||||
description = "Line wrapping module with support for multibyte, fullwidth, and combining characters and languages without whitespaces between words";
|
description = "Line wrapping module with support for multibyte, fullwidth, and combining characters and languages without whitespaces between words";
|
||||||
|
|
Loading…
Reference in a new issue