Merge pull request #231699 from wegank/unixtools-darwin

column, locale: don't import from netbsd on darwin
This commit is contained in:
Weijia Wang 2023-05-17 12:10:04 +03:00 committed by GitHub
commit 6581fc2e11
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -61,7 +61,7 @@ let
};
column = {
linux = pkgs.util-linux;
darwin = pkgs.netbsd.column;
darwin = pkgs.darwin.text_cmds;
};
eject = {
linux = pkgs.util-linux;
@ -106,7 +106,7 @@ let
};
locale = {
linux = pkgs.glibc;
darwin = pkgs.netbsd.locale;
darwin = pkgs.darwin.adv_cmds;
};
logger = {
linux = pkgs.util-linux;