gnutar: fix cross compilation on darwin
This commit is contained in:
parent
21541fc97c
commit
0a5dcc9840
|
@ -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.
|
||||||
|
|
Loading…
Reference in New Issue