-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMODULE.bazel
60 lines (51 loc) · 2.24 KB
/
MODULE.bazel
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Copyright 2023, 2024, 2025 Philipp Stephani
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
module(name = "com_github_phst_emacs")
bazel_dep(name = "bazel_skylib", version = "1.7.1")
# Bogus versions added because of
# https://github.com/renovatebot/renovate/issues/33476.
# FIXME: Remove them once Renovate issue is fixed.
bazel_dep(name = "phst_rules_elisp", version = "0")
git_override(
module_name = "phst_rules_elisp",
commit = "3269eff15bd807024c700066212067c1561b70b4",
remote = "https://github.com/phst/rules_elisp.git",
)
bazel_dep(name = "rules_go", version = "0.52.0")
go_sdk = use_extension("@rules_go//go:extensions.bzl", "go_sdk", dev_dependency = True)
go_sdk.nogo(nogo = "//dev:nogo")
bazel_dep(name = "phst_license_test", version = "0", dev_dependency = True)
git_override(
module_name = "phst_license_test",
commit = "c56f4926e2b3c132adb10b47f518940067c33585",
remote = "https://github.com/phst/license_test.git",
)
bazel_dep(name = "buildifier_prebuilt", version = "8.0.1", dev_dependency = True)
elisp = use_extension("@phst_rules_elisp//elisp:extensions.bzl", "elisp")
elisp.http_archive(
name = "aio",
exclude = ["aio-contrib.el"],
integrity = "sha384-6IREOIs9cZ6Rm7qX+KdglTFRzhtu9T/clX/Qq6gb3Rivrsfr7Yoc8695qWTBVPcn",
strip_prefix = "emacs-aio-da93523e235529fa97d6f251319d9e1d6fc24a41/",
urls = [
"https://github.com/skeeto/emacs-aio/archive/da93523e235529fa97d6f251319d9e1d6fc24a41.zip", # 2020-06-10
],
)
use_repo(elisp, "aio")
bazel_dep(name = "phst_merge_bazel_lockfiles", version = "0", dev_dependency = True)
git_override(
module_name = "phst_merge_bazel_lockfiles",
commit = "2a4ca3559505a8ee01cee7808546613d3d4c6fa6",
remote = "https://github.com/phst/merge-bazel-lockfiles.git",
)