Files
abc/WORKSPACE
Matt Liberty 93b2e6697b buildifier BUILD & WORKSPACE
Signed-off-by: Matt Liberty <mliberty@precisioninno.com>
2025-11-15 16:22:47 +00:00

30 lines
954 B
Python

# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2025-2025, The OpenROAD Authors
workspace(name = "abc")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
rules_hdl_git_hash = "8cc8977cc305ed94ec7852495ed576fcbde1c18d"
rules_hdl_git_sha256 = "046193f4a0b006f43bd5f9615c218d2171d0169e231028a22d8d9c011c675ad6"
http_archive(
name = "rules_hdl",
sha256 = rules_hdl_git_sha256,
strip_prefix = "bazel_rules_hdl-%s" % rules_hdl_git_hash,
urls = [
"https://github.com/hdl/bazel_rules_hdl/archive/%s.tar.gz" % rules_hdl_git_hash,
],
)
load("@rules_hdl//dependency_support/net_invisible_island_ncurses:net_invisible_island_ncurses.bzl", "net_invisible_island_ncurses")
load("@rules_hdl//dependency_support/net_zlib:net_zlib.bzl", "net_zlib")
load("@rules_hdl//dependency_support/org_gnu_readline:org_gnu_readline.bzl", "org_gnu_readline")
net_invisible_island_ncurses()
net_zlib()
org_gnu_readline()