Skip to content

v1.2.0

Compare
Choose a tag to compare
@lalten lalten released this 31 Aug 20:12
· 191 commits to main since this release

Interesting changes from the last version include:

  • New data attribute on the appimage rule itself: #68

WORKSPACE setup:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "rules_appimage",
    sha256 = "d59605787b22f0a3a122b8d26333973a2098c58c13119ac26ecf7183be6c0aa4",
    strip_prefix = "rules_appimage-1.2.0",
    url = "https://github.com/lalten/rules_appimage/archive/refs/tags/v1.2.0.tar.gz",
    patch_cmds = ["rm -r tests"],
)

load("@rules_appimage//:deps.bzl", "rules_appimage_deps")

rules_appimage_deps()