mirror of
https://github.com/The-OpenROAD-Project/abc.git
synced 2026-03-12 11:26:17 +08:00
Adapted from: - https://github.com/hdl/bazel_rules_hdl/tree/main/dependency_support/edu_berkeley_abc - https://github.com/the-OpenROAD-Project/OpenROAD Signed-off-by: Krzysztof Bieganski <kbieganski@antmicro.com>
28 lines
952 B
Python
28 lines
952 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()
|