diff options
Diffstat (limited to 'WORKSPACE')
| -rw-r--r-- | WORKSPACE | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/WORKSPACE b/WORKSPACE new file mode 100644 index 0000000..cc9897e --- /dev/null +++ b/WORKSPACE @@ -0,0 +1,16 @@ +load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") + +RULES_COBOL_VERSION = "0.1.0" + +http_archive( + name = "io_bazel_rules_cobol", + sha256 = "465d6185382baf98ee1273efa4ff0f26e47524b2f6954b7b8071c5b48d21932e", + strip_prefix = "rules_cobol-{v}".format(v = RULES_COBOL_VERSION), + urls = [ + "https://github.com/Fuwn/rules_cobol/archive/refs/tags/{v}.zip".format(v = RULES_COBOL_VERSION), + ], +) + +load("@io_bazel_rules_cobol//cobol:deps.bzl", "cobol_rules_dependencies") + +cobol_rules_dependencies() |