gnutar: fix cross compilation on darwin

This commit is contained in:
Andrew Childs 2020-11-19 16:22:26 +09:00
parent 21541fc97c
commit 0a5dcc9840
1 changed files with 2 additions and 3 deletions

View File

@ -30,9 +30,8 @@ stdenv.mkDerivation rec {
outputs = [ "out" "info" ]; outputs = [ "out" "info" ];
buildInputs = [ ] nativeBuildInputs = lib.optional stdenv.isDarwin autoreconfHook;
++ lib.optional stdenv.isLinux acl buildInputs = lib.optional stdenv.isLinux acl;
++ lib.optional stdenv.isDarwin autoreconfHook;
# May have some issues with root compilation because the bootstrap tool # May have some issues with root compilation because the bootstrap tool
# cannot be used as a login shell for now. # cannot be used as a login shell for now.