Skip to content

v1.0.0

Compare
Choose a tag to compare
@ericnorris ericnorris released this 15 Jun 04:03
v1.0.0
7a28ad1

Initial release.

WORKSPACE Code

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

http_archive(
    name = "com_github_ericnorris_rules_nfpm",
    sha256 = "761afa3f4e82dbed90b6b76c82bee8e7661bb8b7a51ac538daa0191b6252a914",
    urls = [
        "https://github.com/ericnorris/rules_nfpm/archive/v1.0.0.tar.gz",
    ],
    strip_prefix = "rules_nfpm-1.0.0",
)

load("@com_github_ericnorris_rules_nfpm//nfpm:repositories.bzl", "rules_nfpm_dependencies")

rules_nfpm_dependencies()

load("@com_github_ericnorris_rules_nfpm//nfpm:setup.bzl", "rules_nfpm_setup")

rules_nfpm_setup()

load("@com_github_ericnorris_rules_nfpm//nfpm:go_repositories.bzl", "rules_nfpm_go_dependencies")

rules_nfpm_go_dependencies()