forked from bazeltools/bazel-deps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
34 lines (28 loc) · 1.19 KB
/
WORKSPACE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
workspace(name = "com_github_johnynek_bazel_deps")
git_repository(
name = "io_bazel_rules_scala",
remote = "git://github.com/bazelbuild/rules_scala",
commit = "c5f7fae8d7540148b78a8d1cecef459397dbb62b" # update this as needed
)
load("@io_bazel_rules_scala//scala:scala.bzl", "scala_repositories")
scala_repositories()
load("//3rdparty:workspace.bzl", "maven_dependencies")
maven_dependencies()
new_git_repository(
name = "org_typelevel_paiges",
remote = "git://github.com/typelevel/paiges",
commit = "8df2440d3bb4260b0772d6971e14c9d9322b077d",
# inconsistency in how we refer to build paths in new_native/new git
build_file = "3rdparty/manual/BUILD.paiges",
# use target: "@org_typelevel_paiges//:paiges"
)
new_git_repository(
name = "com_monovore_decline",
remote = "git://github.com/bkirwi/decline",
# this is 0.2.2
commit = "b3dd1442923949f1fd2822b266f2e3626919f2c6",
# inconsistency in how we refer to build paths in new_native/new git
build_file = "3rdparty/manual/BUILD.decline",
# use target: "@org_typelevel_paiges//:decline"
)
bind(name = 'io_bazel_rules_scala/dependency/scalatest/scalatest', actual = '//3rdparty/jvm/org/scalatest')