fad9dabf9f
/bin/locale doesn't exist on musl and was already effectively disabled in #228349. However this still leaves the following warning for initdb: performing post-bootstrap initialization ... sh: locale: not found By applying the alpine patch to disable locale -a entirely, this warning will disappear. This will also make one more regression test pass when testing "check-world" instead of "check", only.
11 lines
387 B
Nix
11 lines
387 B
Nix
import ./generic.nix {
|
|
version = "12.20";
|
|
hash = "sha256-LVQ68wCf7H/VrzX3pwyVCF0+72tQjlF6qUk+mbFenqk=";
|
|
muslPatches = {
|
|
dont-use-locale-a = {
|
|
url = "https://git.alpinelinux.org/aports/plain/testing/postgresql12/dont-use-locale-a-on-musl.patch?id=d5227c91adda59d4e7f55f13468f0314e8869174";
|
|
hash = "sha256-fk+y/SvyA4Tt8OIvDl7rje5dLs3Zw+Ln1oddyYzerOo=";
|
|
};
|
|
};
|
|
}
|