Apologies for the noob question but I'm not finding the information.
I'm trying to upgrade an external dependency and I was forced to upgrade from Bazel 5 to Bazel 6.1.1
Now a `pkg_tar` rule that usually worked, Bazel is complaining:
```
load("@bazel_tools//tools/build_defs/pkg:pkg.bzl", "pkg_tar")
...
pkg_tar(
name = "gomlx_xla",
srcs = [
":gomlx_headers_include",
":gomlx_xla_lib",
],
extension = "tar.gz",
mode = "0644",
package_dir = "",
)
```
When I do a `blaze ... build ... (many flags and options)`, I get:
```
ERROR: /mnt/BUILD:37:8: //:gomlx_xla: no such attribute 'extension' in '_real_pkg_tar' rule
ERROR: /mnt/BUILD:37:8: //:gomlx_xla: no such attribute 'mode' in '_real_pkg_tar' rule
```
So I'm assuming the syntax (or source) of the rule changed. But I wonder if it's something else.
Any pointers ?
thanks in advance for any help!