mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
Setting coreutils to 8.20 for linux, 8.19 for darwin
As Eelco noted in 0ecd1f62c7
,
Darwin can't build 8.20. But linux can't build 8.19 now.
This commit is contained in:
parent
09d12cc9db
commit
9cc65f6893
@ -570,7 +570,12 @@ let
|
||||
|
||||
convmv = callPackage ../tools/misc/convmv { };
|
||||
|
||||
coreutils = callPackage ../tools/misc/coreutils {
|
||||
coreutils = if stdenv.isDarwin then
|
||||
# 8.20 doesn't build on Darwin
|
||||
(callPackage ../tools/misc/coreutils/8.19)
|
||||
else
|
||||
(callPackage ../tools/misc/coreutils)
|
||||
{
|
||||
# TODO: Add ACL support for cross-Linux.
|
||||
aclSupport = crossSystem == null && stdenv.isLinux;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user