mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
1a2afd5266
* upgrade bazel settings to scala 2.12.12 * upgrade nix scala tool to scala 2.12.12 * upgrade silencer references to scala 2.12.12 * repin for scala 2.12, silencer, wartremover upgrades * remove numerous occurrences of unused silencer now spotted * update Scala version in our bazel notes CHANGELOG_BEGIN CHANGELOG_END * update compatibility maven_install.json to match compatibility WORKSPACE
971 lines
28 KiB
Python
971 lines
28 KiB
Python
workspace(
|
||
name = "com_github_digital_asset_daml",
|
||
managed_directories = {
|
||
"@npm": ["node_modules"],
|
||
"@daml_extension_deps": ["compiler/daml-extension/node_modules"],
|
||
"@navigator_frontend_deps": ["navigator/frontend/node_modules"],
|
||
"@language_support_ts_deps": ["language-support/ts/packages/node_modules"],
|
||
},
|
||
)
|
||
|
||
# NOTE(JM): Load external dependencies from deps.bzl.
|
||
# Do not put "http_archive" and similar rules into this file. Put them into
|
||
# deps.bzl. This allows using this repository as an external workspace.
|
||
# (though with the caviat that that user needs to repeat the relevant bits of
|
||
# magic in this file, but at least right versions of external rules are picked).
|
||
load("//:deps.bzl", "daml_deps")
|
||
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file")
|
||
|
||
daml_deps()
|
||
|
||
load("@rules_haskell//haskell:repositories.bzl", "rules_haskell_dependencies")
|
||
|
||
rules_haskell_dependencies()
|
||
|
||
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
|
||
|
||
protobuf_deps()
|
||
|
||
load("@rules_pkg//:deps.bzl", "rules_pkg_dependencies")
|
||
|
||
rules_pkg_dependencies()
|
||
|
||
register_toolchains(
|
||
"//:c2hs-toolchain",
|
||
)
|
||
|
||
load("//bazel_tools/dev_env_tool:dev_env_tool.bzl", "dadew", "dev_env_tool")
|
||
load(
|
||
"@io_tweag_rules_nixpkgs//nixpkgs:nixpkgs.bzl",
|
||
"nixpkgs_cc_configure_hermetic",
|
||
"nixpkgs_local_repository",
|
||
"nixpkgs_package",
|
||
"nixpkgs_python_configure",
|
||
)
|
||
load("//bazel_tools:create_workspace.bzl", "create_workspace")
|
||
load("//bazel_tools:os_info.bzl", "os_info")
|
||
|
||
os_info(name = "os_info")
|
||
|
||
load("//bazel_tools:build_environment.bzl", "build_environment")
|
||
|
||
build_environment(name = "build_environment")
|
||
|
||
dadew(name = "dadew")
|
||
|
||
load("@os_info//:os_info.bzl", "is_darwin", "is_linux", "is_windows")
|
||
load("//bazel_tools:ghc_dwarf.bzl", "ghc_dwarf")
|
||
|
||
ghc_dwarf(name = "ghc_dwarf")
|
||
|
||
load("@ghc_dwarf//:ghc_dwarf.bzl", "enable_ghc_dwarf")
|
||
|
||
# Configure msys2 POSIX toolchain provided by dadew.
|
||
load("//bazel_tools/dev_env_tool:dev_env_tool.bzl", "dadew_sh_posix_configure")
|
||
|
||
dadew_sh_posix_configure() if is_windows else None
|
||
|
||
nixpkgs_local_repository(
|
||
name = "nixpkgs",
|
||
nix_file = "//nix:nixpkgs.nix",
|
||
nix_file_deps = [
|
||
"//nix:nixpkgs/default.nix",
|
||
"//nix:nixpkgs/default.src.json",
|
||
],
|
||
)
|
||
|
||
dev_env_nix_repos = {
|
||
"nixpkgs": "@nixpkgs",
|
||
}
|
||
|
||
# Bazel cannot automatically determine which files a Nix target depends on.
|
||
# rules_nixpkgs offers the nix_file_deps attribute for that purpose. It should
|
||
# list all files that a target depends on. This allows Bazel to rebuild the
|
||
# target using Nix if any of these files has been changed. Omitting files from
|
||
# this list can cause subtle bugs or cache misses when Bazel loads an outdated
|
||
# store path. You can use the following command to determine what files a Nix
|
||
# target depends on. E.g. for tools.curl
|
||
#
|
||
# $ nix-build -vv -A tools.curl nix 2>&1 \
|
||
# | egrep '(evaluating file|copied source)' \
|
||
# | egrep -v '/nix/store'
|
||
#
|
||
# Unfortunately there is no mechanism to automatically keep this list up to
|
||
# date at the moment. See https://github.com/tweag/rules_nixpkgs/issues/74.
|
||
common_nix_file_deps = [
|
||
"//nix:bazel.nix",
|
||
"//nix:nixpkgs.nix",
|
||
"//nix:nixpkgs/default.nix",
|
||
"//nix:nixpkgs/default.src.json",
|
||
"//nix:grpc-Rename-gettid-functions.patch",
|
||
"//nix:grpc-Fix-gettid-naming-conflict.patch",
|
||
]
|
||
|
||
# Use Nix provisioned cc toolchain
|
||
nixpkgs_cc_configure_hermetic(
|
||
# We override the Bazel's autodetect toolchain to avoid accidentaly
|
||
# dependencies on the inhermetic autodetected builtin include paths or
|
||
# builds failing due to Bazel not finding `cc` in `$PATH` or `$CC`.
|
||
name = "local_config_cc",
|
||
nix_file = "//nix:bazel-cc-toolchain.nix",
|
||
nix_file_deps = common_nix_file_deps + [
|
||
"//nix:tools/bazel-cc-toolchain/default.nix",
|
||
],
|
||
repositories = dev_env_nix_repos,
|
||
) if not is_windows else None
|
||
|
||
nixpkgs_python_configure(repository = "@nixpkgs") if not is_windows else None
|
||
|
||
# Curl system dependency
|
||
nixpkgs_package(
|
||
name = "curl_nix",
|
||
attribute_path = "curl",
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
# Toxiproxy dependency
|
||
nixpkgs_package(
|
||
name = "toxiproxy_nix",
|
||
attribute_path = "toxiproxy",
|
||
fail_not_supported = False,
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
dev_env_tool(
|
||
name = "toxiproxy_dev_env",
|
||
nix_include = ["bin/toxiproxy-cmd"],
|
||
nix_label = "@toxiproxy_nix",
|
||
nix_paths = ["bin/toxiproxy-cmd"],
|
||
tools = ["toxiproxy"],
|
||
win_include = ["toxiproxy-server-windows-amd64.exe"],
|
||
win_paths = ["toxiproxy-server-windows-amd64.exe"],
|
||
win_tool = "toxiproxy",
|
||
)
|
||
|
||
# Patchelf system dependency
|
||
nixpkgs_package(
|
||
name = "patchelf_nix",
|
||
attribute_path = "patchelf",
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
# netcat dependency
|
||
nixpkgs_package(
|
||
name = "netcat_nix",
|
||
attribute_path = "netcat-gnu",
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
dev_env_tool(
|
||
name = "netcat_dev_env",
|
||
nix_include = ["bin/nc"],
|
||
nix_label = "@netcat_nix",
|
||
nix_paths = ["bin/nc"],
|
||
tools = ["nc"],
|
||
win_include = ["usr/bin/nc.exe"],
|
||
win_paths = ["usr/bin/nc.exe"],
|
||
win_tool = "msys2",
|
||
)
|
||
|
||
nixpkgs_package(
|
||
name = "openssl_nix",
|
||
attribute_path = "openssl",
|
||
fail_not_supported = False,
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
dev_env_tool(
|
||
name = "openssl_dev_env",
|
||
nix_include = ["bin/openssl"],
|
||
nix_label = "@openssl_nix",
|
||
nix_paths = ["bin/openssl"],
|
||
tools = ["openssl"],
|
||
win_include = [
|
||
"usr/bin",
|
||
"usr/ssl",
|
||
],
|
||
win_paths = ["usr/bin/openssl.exe"],
|
||
win_tool = "msys2",
|
||
)
|
||
|
||
# Tar & gzip dependency
|
||
nixpkgs_package(
|
||
name = "tar_nix",
|
||
attribute_path = "gnutar",
|
||
fail_not_supported = False,
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
dev_env_tool(
|
||
name = "tar_dev_env",
|
||
nix_include = ["bin/tar"],
|
||
nix_label = "@tar_nix",
|
||
nix_paths = ["bin/tar"],
|
||
tools = ["tar"],
|
||
win_include = ["usr/bin/tar.exe"],
|
||
win_paths = ["usr/bin/tar.exe"],
|
||
win_tool = "msys2",
|
||
)
|
||
|
||
nixpkgs_package(
|
||
name = "gzip_nix",
|
||
attribute_path = "gzip",
|
||
fail_not_supported = False,
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
dev_env_tool(
|
||
name = "gzip_dev_env",
|
||
nix_include = ["bin/gzip"],
|
||
nix_label = "@gzip_nix",
|
||
nix_paths = ["bin/gzip"],
|
||
tools = ["gzip"],
|
||
win_include = ["usr/bin/gzip.exe"],
|
||
win_paths = ["usr/bin/gzip.exe"],
|
||
win_tool = "msys2",
|
||
)
|
||
|
||
nixpkgs_package(
|
||
name = "patch_nix",
|
||
attribute_path = "gnupatch",
|
||
fail_not_supported = False,
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
dev_env_tool(
|
||
name = "patch_dev_env",
|
||
nix_include = ["bin/patch"],
|
||
nix_label = "@patch_nix",
|
||
nix_paths = ["bin/patch"],
|
||
tools = ["patch"],
|
||
win_include = ["usr/bin/patch.exe"],
|
||
win_paths = ["usr/bin/patch.exe"],
|
||
win_tool = "msys2",
|
||
)
|
||
|
||
dev_env_tool(
|
||
name = "mvn_dev_env",
|
||
nix_include = ["bin/mvn"],
|
||
nix_label = "@mvn_nix",
|
||
nix_paths = ["bin/mvn"],
|
||
tools = ["mvn"],
|
||
win_include = [
|
||
"bin",
|
||
"boot",
|
||
"conf",
|
||
"lib",
|
||
],
|
||
win_paths = ["bin/mvn"],
|
||
win_tool = "maven-3.6.1",
|
||
)
|
||
|
||
nixpkgs_package(
|
||
name = "awk_nix",
|
||
attribute_path = "gawk",
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
nixpkgs_package(
|
||
name = "coreutils_nix",
|
||
attribute_path = "coreutils",
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
nixpkgs_package(
|
||
name = "grpcurl_nix",
|
||
attribute_path = "grpcurl",
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
nix_ghc_deps = common_nix_file_deps + [
|
||
"//nix:ghc.nix",
|
||
"//nix:overrides/ghc-8.6.5.nix",
|
||
"//nix:overrides/ghc-8.6.3-binary.nix",
|
||
]
|
||
|
||
nixpkgs_package(
|
||
name = "hlint_nix",
|
||
attribute_path = "hlint",
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = nix_ghc_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
nixpkgs_package(
|
||
name = "zip_nix",
|
||
attribute_path = "zip",
|
||
fail_not_supported = False,
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
nixpkgs_package(
|
||
name = "jekyll_nix",
|
||
attribute_path = "jekyll",
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
load(
|
||
"@rules_haskell//haskell:ghc_bindist.bzl",
|
||
"haskell_register_ghc_bindists",
|
||
)
|
||
load(
|
||
"@rules_haskell//haskell:nixpkgs.bzl",
|
||
"haskell_register_ghc_nixpkgs",
|
||
)
|
||
|
||
nixpkgs_package(
|
||
name = "glibc_locales",
|
||
attribute_path = "glibcLocales",
|
||
build_file_content = """
|
||
package(default_visibility = ["//visibility:public"])
|
||
filegroup(
|
||
name = "locale-archive",
|
||
srcs = ["lib/locale/locale-archive"],
|
||
)
|
||
""",
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
) if is_linux else None
|
||
|
||
# This is used to get ghc-pkg on Linux.
|
||
nixpkgs_package(
|
||
name = "ghc_nix",
|
||
attribute_path = "ghcStatic",
|
||
build_file_content = """
|
||
package(default_visibility = ["//visibility:public"])
|
||
exports_files(glob(["lib/**/*"]))
|
||
""",
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = nix_ghc_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
) if not is_windows else None
|
||
|
||
common_ghc_flags = [
|
||
# We default to -c opt but we also want -O1 in -c dbg builds
|
||
# since we use them for profiling.
|
||
"-O1",
|
||
"-hide-package=ghc-boot-th",
|
||
"-hide-package=ghc-boot",
|
||
]
|
||
|
||
# Used by Darwin and Linux
|
||
haskell_register_ghc_nixpkgs(
|
||
attribute_path = "ghcStaticDwarf" if enable_ghc_dwarf else "ghcStatic",
|
||
build_file = "@io_tweag_rules_nixpkgs//nixpkgs:BUILD.pkg",
|
||
|
||
# -fexternal-dynamic-refs is required so that we produce position-independent
|
||
# relocations against some functions (-fPIC alone isn’t sufficient).
|
||
|
||
# -split-sections would allow us to produce significantly smaller binaries, e.g., for damlc,
|
||
# the binary shrinks from 186MB to 83MB. -split-sections only works on Linux but
|
||
# we get a similar behavior on Darwin by default.
|
||
# However, we had to disable split-sections for now as it seems to interact very badly
|
||
# with the GHCi linker to the point where :main takes several minutes rather than several seconds.
|
||
compiler_flags = common_ghc_flags + [
|
||
"-fexternal-dynamic-refs",
|
||
] + (["-g3"] if enable_ghc_dwarf else ([
|
||
"-optl-unexported_symbols_list=*",
|
||
"-optc-mmacosx-version-min=10.14",
|
||
"-opta-mmacosx-version-min=10.14",
|
||
"-optl-mmacosx-version-min=10.14",
|
||
"-optP-mmacosx-version-min=10.14",
|
||
] if is_darwin else ["-optl-s"])),
|
||
compiler_flags_select = {
|
||
"@com_github_digital_asset_daml//:profiling_build": ["-fprof-auto"],
|
||
"//conditions:default": [],
|
||
},
|
||
locale_archive = "@glibc_locales//:locale-archive",
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = nix_ghc_deps,
|
||
repl_ghci_args = [
|
||
"-O0",
|
||
"-fexternal-interpreter",
|
||
"-Wwarn",
|
||
],
|
||
repositories = dev_env_nix_repos,
|
||
static_runtime = True,
|
||
version = "8.6.5",
|
||
)
|
||
|
||
# Used by Windows
|
||
haskell_register_ghc_bindists(
|
||
compiler_flags = common_ghc_flags,
|
||
version = "8.6.5",
|
||
) if is_windows else None
|
||
|
||
nixpkgs_package(
|
||
name = "jq",
|
||
attribute_path = "jq",
|
||
fail_not_supported = False,
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
dev_env_tool(
|
||
name = "jq_dev_env",
|
||
nix_include = ["bin/jq"],
|
||
nix_label = "@jq",
|
||
nix_paths = ["bin/jq"],
|
||
tools = ["jq"],
|
||
win_include = ["mingw64/bin"],
|
||
win_include_as = {"mingw64/bin": "bin"},
|
||
win_paths = ["bin/jq.exe"],
|
||
win_tool = "msys2",
|
||
)
|
||
|
||
nixpkgs_package(
|
||
name = "mvn_nix",
|
||
attribute_path = "mvn",
|
||
fail_not_supported = False,
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
#node & npm
|
||
nixpkgs_package(
|
||
name = "node_nix",
|
||
attribute_path = "nodejsNested",
|
||
build_file_content = 'exports_files(glob(["node_nix/**"]))',
|
||
fail_not_supported = False,
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
#sass
|
||
nixpkgs_package(
|
||
name = "sass_nix",
|
||
attribute_path = "sass",
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
#tex
|
||
nixpkgs_package(
|
||
name = "texlive_nix",
|
||
attribute_path = "texlive",
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
#sphinx
|
||
nixpkgs_package(
|
||
name = "sphinx_nix",
|
||
attribute_path = "sphinx183-exts",
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
#Imagemagick
|
||
nixpkgs_package(
|
||
name = "imagemagick_nix",
|
||
attribute_path = "imagemagick",
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
#Javadoc
|
||
nixpkgs_package(
|
||
name = "jdk_nix",
|
||
attribute_path = "jdk8",
|
||
fail_not_supported = False,
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
# This only makes sense on Windows so we just put dummy values in the nix fields.
|
||
dev_env_tool(
|
||
name = "makensis_dev_env",
|
||
nix_include = [""],
|
||
nix_paths = ["bin/makensis.exe"],
|
||
tools = ["makensis"],
|
||
win_include = [
|
||
"bin",
|
||
"contrib",
|
||
"include",
|
||
"plugins",
|
||
"stubs",
|
||
],
|
||
win_paths = ["bin/makensis.exe"],
|
||
win_tool = "nsis-3.04",
|
||
) if is_windows else None
|
||
|
||
# Scaladoc
|
||
nixpkgs_package(
|
||
name = "scala_nix",
|
||
attribute_path = "scala",
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
# Dummy target //external:python_headers.
|
||
# To avoid query errors due to com_google_protobuf.
|
||
# See https://github.com/protocolbuffers/protobuf/blob/d9ccd0c0e6bbda9bf4476088eeb46b02d7dcd327/util/python/BUILD
|
||
bind(
|
||
name = "python_headers",
|
||
actual = "@com_google_protobuf//util/python:python_headers",
|
||
)
|
||
|
||
http_archive(
|
||
name = "static_asset_d3plus",
|
||
build_file_content = 'exports_files(["js/d3.min.js", "js/d3plus.min.js"])',
|
||
sha256 = "7d31a500a4850364a966ac938eea7f2fa5ce1334966b52729079490636e7049a",
|
||
strip_prefix = "d3plus.v1.9.8",
|
||
type = "zip",
|
||
urls = ["https://github.com/alexandersimoes/d3plus/releases/download/v1.9.8/d3plus.zip"],
|
||
)
|
||
|
||
load("//:bazel-haskell-deps.bzl", "daml_haskell_deps")
|
||
|
||
daml_haskell_deps()
|
||
|
||
load("@rules_haskell//tools:repositories.bzl", "rules_haskell_worker_dependencies")
|
||
|
||
# We don't use the worker mode, but this is required for bazel query to function.
|
||
# Call this after `daml_haskell_deps` to ensure that the right `stack` is used.
|
||
rules_haskell_worker_dependencies()
|
||
|
||
load("//bazel_tools:java.bzl", "java_home_runtime")
|
||
|
||
java_home_runtime(name = "java_home")
|
||
|
||
# rules_go used here to compile a wrapper around the protoc-gen-scala plugin
|
||
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
|
||
|
||
nixpkgs_package(
|
||
name = "go_nix",
|
||
attribute_path = "go",
|
||
build_file_content = """
|
||
filegroup(
|
||
name = "sdk",
|
||
srcs = glob(["share/go/**"]),
|
||
visibility = ["//visibility:public"],
|
||
)
|
||
""",
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
# A repository that generates the Go SDK imports, see
|
||
# ./bazel_tools/go_sdk/README.md
|
||
local_repository(
|
||
name = "go_sdk_repo",
|
||
path = "bazel_tools/go_sdk",
|
||
)
|
||
|
||
load("@io_bazel_rules_go//go:deps.bzl", "go_wrap_sdk")
|
||
|
||
# On Nix platforms we use the Nix provided Go SDK, on Windows we let Bazel pull
|
||
# an upstream one.
|
||
go_wrap_sdk(
|
||
name = "go_sdk",
|
||
root_file = "@go_nix//:share/go/ROOT",
|
||
) if not is_windows else None
|
||
|
||
go_rules_dependencies()
|
||
|
||
go_register_toolchains()
|
||
|
||
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository")
|
||
|
||
gazelle_dependencies()
|
||
|
||
# protoc-gen-doc repo
|
||
go_repository(
|
||
name = "com_github_pseudomuto_protoc_gen_doc",
|
||
commit = "0c4d666cfe1175663cf067963396a0b9b34f543f",
|
||
importpath = "github.com/pseudomuto/protoc-gen-doc",
|
||
)
|
||
|
||
# protokit repo
|
||
go_repository(
|
||
name = "com_github_pseudomuto_protokit",
|
||
commit = "7037620bf27b13fcdc10b1b17ddef82540db670b",
|
||
importpath = "github.com/pseudomuto/protokit",
|
||
)
|
||
|
||
load("//:bazel-java-deps.bzl", "install_java_deps")
|
||
|
||
install_java_deps()
|
||
|
||
load("@maven//:defs.bzl", "pinned_maven_install")
|
||
|
||
pinned_maven_install()
|
||
|
||
load(
|
||
"@io_bazel_rules_scala//scala:scala.bzl",
|
||
"scala_repositories",
|
||
)
|
||
|
||
# note some dependencies in bazel-jvm-deps.bzl (e.g. silencer_plugin) refer to the current scala version:
|
||
scala_repositories(
|
||
(
|
||
"2.12.12",
|
||
{
|
||
"scala_compiler": "9dfa682ad7c2859cdcf6a31b9734c8f1ee38e7e391aeafaef91967b6ce819b6b",
|
||
"scala_library": "1673ffe8792021f704caddfe92067ed1ec75229907f84380ad68fe621358c925",
|
||
"scala_reflect": "3c502791757c0c8208f00033d8c4d778ed446efa6f49a6f89b59c6f92b347774",
|
||
},
|
||
),
|
||
fetch_sources = True,
|
||
)
|
||
|
||
load("@io_bazel_rules_scala//scala:toolchains.bzl", "scala_register_toolchains")
|
||
|
||
scala_register_toolchains()
|
||
|
||
load("@io_bazel_rules_scala//jmh:jmh.bzl", "jmh_repositories")
|
||
|
||
jmh_repositories()
|
||
|
||
load("@io_bazel_rules_docker//repositories:repositories.bzl", container_repositories = "repositories")
|
||
|
||
container_repositories()
|
||
|
||
load("@io_bazel_rules_docker//repositories:deps.bzl", container_deps = "deps")
|
||
|
||
container_deps()
|
||
|
||
load("@io_bazel_rules_docker//container:container.bzl", "container_pull")
|
||
|
||
container_pull(
|
||
name = "java_base",
|
||
digest = "sha256:17b8b592d923f375972a59e902426bfaa30900d18fdb5e451f48089258fd621c",
|
||
registry = "gcr.io",
|
||
repository = "distroless/java",
|
||
tag = "8",
|
||
)
|
||
|
||
load("@io_bazel_rules_docker//java:image.bzl", java_image_repositories = "repositories")
|
||
|
||
java_image_repositories()
|
||
|
||
# TODO (aherrmann) This wrapper is only used on Windows.
|
||
# Replace by an appropriate Windows only `dadew_tool` call.
|
||
dev_env_tool(
|
||
name = "nodejs_dev_env",
|
||
nix_include = [
|
||
"bin",
|
||
"include",
|
||
"lib",
|
||
"share",
|
||
],
|
||
nix_label = "@node_nix",
|
||
nix_paths = [],
|
||
prefix = "nodejs_dev_env",
|
||
tools = [],
|
||
win_include = [
|
||
".",
|
||
],
|
||
win_paths = [],
|
||
win_tool = "nodejs-12.17.0",
|
||
)
|
||
|
||
# Setup the Node.js toolchain
|
||
load("@build_bazel_rules_nodejs//:index.bzl", "node_repositories", "yarn_install")
|
||
|
||
node_repositories(
|
||
package_json = ["//:package.json"],
|
||
# Using `dev_env_tool` introduces an additional layer of symlink
|
||
# indirection. Bazel doesn't track dependencies through symbolic links.
|
||
# Occasionally, this can cause build failures on CI if a build is not
|
||
# invalidated despite a change of an original source. To avoid such issues
|
||
# we use the `nixpkgs_package` directly.
|
||
vendored_node = "@nodejs_dev_env" if is_windows else "@node_nix",
|
||
)
|
||
|
||
yarn_install(
|
||
name = "npm",
|
||
args = ["--frozen-lockfile"],
|
||
package_json = "//:package.json",
|
||
yarn_lock = "//:yarn.lock",
|
||
)
|
||
|
||
# TODO use fine-grained managed dependency
|
||
yarn_install(
|
||
name = "daml_extension_deps",
|
||
args = ["--frozen-lockfile"],
|
||
package_json = "//compiler/daml-extension:package.json",
|
||
yarn_lock = "//compiler/daml-extension:yarn.lock",
|
||
)
|
||
|
||
# TODO use fine-grained managed dependency
|
||
yarn_install(
|
||
name = "navigator_frontend_deps",
|
||
args = ["--frozen-lockfile"],
|
||
package_json = "//navigator/frontend:package.json",
|
||
yarn_lock = "//navigator/frontend:yarn.lock",
|
||
)
|
||
|
||
# We’ve had a bunch of problems with typescript rules on Windows.
|
||
# Therefore we’ve disabled them completely for now.
|
||
# Since we need to @load stuff in @language_support_ts_deps
|
||
# and load statements can’t be conditional, we create a dummy
|
||
# workspace on Windows.
|
||
# See #4162 for more details.
|
||
yarn_install(
|
||
name = "language_support_ts_deps",
|
||
args = ["--frozen-lockfile"],
|
||
package_json = "//language-support/ts/packages:package.json",
|
||
yarn_lock = "//language-support/ts/packages:yarn.lock",
|
||
) if not is_windows else create_workspace(
|
||
name = "language_support_ts_deps",
|
||
files = {
|
||
"eslint/BUILD.bazel": 'exports_files(["index.bzl"])',
|
||
"eslint/index.bzl": "def eslint_test(*args, **kwargs):\n pass",
|
||
"jest-cli/BUILD.bazel": 'exports_files(["index.bzl"])',
|
||
"jest-cli/index.bzl": "def jest_test(*args, **kwargs):\n pass",
|
||
"typescript/BUILD.bazel": 'exports_files(["index.bzl"])',
|
||
"typescript/index.bzl": "def tsc(*args, **kwargs):\n pass",
|
||
},
|
||
)
|
||
|
||
# We usually use the _deploy_jar target to produce self-contained jars, but here we're using jar_jar because the size
|
||
# of codegen tool is substantially reduced (as shown below) and that the presence of JVM internal com.sun classes could
|
||
# theoretically stop the codegen running against JVMs other the OpenJDK 8 (the current JVM used for building).
|
||
load("@com_github_johnynek_bazel_jar_jar//:jar_jar.bzl", "jar_jar_repositories")
|
||
|
||
jar_jar_repositories()
|
||
|
||
# The following is advertised by rules_proto, but we define our own dependencies
|
||
# in dependencies.yaml. So all we need to do is replicate the binds here
|
||
# https://github.com/stackb/rules_proto/tree/master/java#java_grpc_library
|
||
|
||
# load("@io_grpc_grpc_java//:repositories.bzl", "grpc_java_repositories")
|
||
# grpc_java_repositories()
|
||
|
||
# Load the grpc deps last, since it won't try to load already loaded
|
||
# dependencies.
|
||
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")
|
||
|
||
grpc_deps()
|
||
|
||
load("@upb//bazel:workspace_deps.bzl", "upb_deps")
|
||
|
||
upb_deps()
|
||
|
||
load("@build_bazel_rules_apple//apple:repositories.bzl", "apple_rules_dependencies")
|
||
|
||
apple_rules_dependencies()
|
||
|
||
load("@com_github_bazelbuild_buildtools//buildifier:deps.bzl", "buildifier_dependencies")
|
||
|
||
buildifier_dependencies()
|
||
|
||
nixpkgs_package(
|
||
name = "grpc_nix",
|
||
attribute_path = "grpc",
|
||
build_file_content = """
|
||
load("@os_info//:os_info.bzl", "is_linux")
|
||
cc_library(
|
||
name = "grpc_lib",
|
||
srcs = [":lib/libgrpc.so", ":lib/libgpr.so"] if is_linux else [":lib/libgrpc.dylib", ":lib/libgpr.dylib"],
|
||
visibility = ["//visibility:public"],
|
||
hdrs = [":include"],
|
||
includes = ["include"],
|
||
)
|
||
""",
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
nixpkgs_package(
|
||
name = "postgresql_nix",
|
||
attribute_path = "postgresql_9_6",
|
||
fail_not_supported = False,
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
)
|
||
|
||
nixpkgs_package(
|
||
name = "z3_nix",
|
||
attribute_path = "z3",
|
||
fail_not_supported = False,
|
||
nix_file = "//nix:bazel.nix",
|
||
nix_file_deps = common_nix_file_deps,
|
||
# Remove once we upgrade to Bazel >=3.0. Until then `nix-build` output
|
||
# confuses the JAR query in `daml-sdk-head`.
|
||
quiet = True,
|
||
repositories = dev_env_nix_repos,
|
||
) if not is_windows else None
|
||
|
||
dev_env_tool(
|
||
name = "postgresql_dev_env",
|
||
nix_include = [
|
||
"bin",
|
||
"include",
|
||
"lib",
|
||
"share",
|
||
],
|
||
nix_label = "@postgresql_nix",
|
||
nix_paths = [
|
||
"bin/createdb",
|
||
"bin/dropdb",
|
||
"bin/initdb",
|
||
"bin/pg_ctl",
|
||
"bin/postgres",
|
||
],
|
||
required_tools = {
|
||
"initdb": ["postgres"],
|
||
"pg_ctl": ["postgres"],
|
||
},
|
||
tools = [
|
||
"createdb",
|
||
"dropdb",
|
||
"initdb",
|
||
"pg_ctl",
|
||
"postgres",
|
||
],
|
||
win_include = [
|
||
"mingw64/bin",
|
||
"mingw64/include",
|
||
"mingw64/lib",
|
||
"mingw64/share",
|
||
],
|
||
win_include_as = {
|
||
"mingw64/bin": "bin",
|
||
"mingw64/include": "include",
|
||
"mingw64/lib": "lib",
|
||
"mingw64/share": "share",
|
||
},
|
||
win_paths = [
|
||
"bin/createdb.exe",
|
||
"bin/dropdb.exe",
|
||
"bin/initdb.exe",
|
||
"bin/pg_ctl.exe",
|
||
"bin/postgres.exe",
|
||
],
|
||
win_tool = "msys2",
|
||
)
|
||
|
||
http_archive(
|
||
name = "canton",
|
||
build_file_content = """
|
||
package(default_visibility = ["//visibility:public"])
|
||
|
||
java_import(
|
||
name = "lib",
|
||
jars = glob(["lib/**"]),
|
||
)
|
||
""",
|
||
sha256 = "dff85a80e893f1d4e99c3eb3cd62ed0fbb8a91d4b76aa2cc3394a635da968aed",
|
||
strip_prefix = "canton-0.18.2",
|
||
urls = ["https://www.canton.io/releases/canton-0.18.2.tar.gz"],
|
||
)
|