lol

gnutar: fix cross compilation on darwin

+2 -3
+2 -3
pkgs/tools/archivers/gnutar/default.nix
··· 30 31 outputs = [ "out" "info" ]; 32 33 - buildInputs = [ ] 34 - ++ lib.optional stdenv.isLinux acl 35 - ++ lib.optional stdenv.isDarwin autoreconfHook; 36 37 # May have some issues with root compilation because the bootstrap tool 38 # cannot be used as a login shell for now.
··· 30 31 outputs = [ "out" "info" ]; 32 33 + nativeBuildInputs = lib.optional stdenv.isDarwin autoreconfHook; 34 + buildInputs = lib.optional stdenv.isLinux acl; 35 36 # May have some issues with root compilation because the bootstrap tool 37 # cannot be used as a login shell for now.