diff options
| author | Fuwn <[email protected]> | 2022-05-22 04:31:57 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-05-22 04:31:57 -0700 |
| commit | 5b11262e810c2cd06c0baa120f5674b7f5c98833 (patch) | |
| tree | a3271ec1c4616104b71b1374a5ce6cda2445cca6 /WORKSPACE | |
| download | bazel-cobol-example-main.tar.xz bazel-cobol-example-main.zip | |
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() |