tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
icu: xlocale.h fixup needed w/musl as well
Will Dietz
8 years ago
e93dc20e
6923737b
+1
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
icu
base.nix
+1
-1
pkgs/development/libraries/icu/base.nix
···
26
26
'';
27
27
28
28
# https://sourceware.org/glibc/wiki/Release/2.26#Removal_of_.27xlocale.h.27
29
29
-
postPatch = if stdenv ? glibc
29
29
+
postPatch = if (stdenv.hostPlatform.libc == "glibc" || stdenv.hostPlatform.libc == "musl")
30
30
then "substituteInPlace i18n/digitlst.cpp --replace '<xlocale.h>' '<locale.h>'"
31
31
else null; # won't find locale_t on darwin
32
32