Skip to content

Commit

Permalink
multiple use_repos are not necessary
Browse files Browse the repository at this point in the history
  • Loading branch information
shabanzd authored Nov 20, 2023
1 parent 99e2ba5 commit 99b13e6
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,7 @@ pip.parse(
)
use_repo(pip, "rules_appimage_py_deps")

non_module_deps = use_extension("//:deps.bzl", "non_module_deps")
use_repo(non_module_deps, "squashfs-tools")
use_repo(non_module_deps, "zstd")
use_repo(non_module_deps, "appimagetool.png")
use_repo(non_module_deps, "appimage_runtime_aarch64")
use_repo(non_module_deps, "appimage_runtime_armhf")
use_repo(non_module_deps, "appimage_runtime_i686")
use_repo(non_module_deps, "appimage_runtime_x86_64")
non_module_deps = use_extension("@rules_appimage//:deps.bzl", "non_module_deps")
use_repo(non_module_deps, "squashfs-tools", "zstd", "appimagetool.png", "appimage_runtime_aarch64", "appimage_runtime_armhf", "appimage_runtime_i686", "appimage_runtime_x86_64")

# -- bazel_dep definitions -- #

0 comments on commit 99b13e6

Please sign in to comment.