forked from oxygen-dioxide/OpenUtau
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWORKSPACE.bazel
47 lines (42 loc) · 1.85 KB
/
WORKSPACE.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
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "libgvps",
build_file = "@//third_party:libgvps.BUILD",
integrity = "sha256-6sxK57GyukEr6KZZEg937jfejQPlq2z5mQ4JnLU1H3w=",
strip_prefix = "libgvps-2f1b4106d72f8f8138dc447bf0123820c0772cbd",
urls = ["https://github.com/Sleepwalking/libgvps/archive/2f1b4106d72f8f8138dc447bf0123820c0772cbd.zip"],
)
http_archive(
name = "libnpy",
build_file = "@//third_party:libnpy.BUILD",
integrity = "sha256-PJhkwb968IyI8gVkeKLG0lOWdGc7q5+bSgBCqEqFfxk=",
strip_prefix = "libnpy-1.0.1",
urls = ["https://github.com/llohse/libnpy/archive/refs/tags/v1.0.1.zip"],
)
http_archive(
name = "libpyin",
build_file = "@//third_party:libpyin.BUILD",
integrity = "sha256-BRCmignOqiKCAiodLoTp031z6T4OdNjSiVai03D2Ugo=",
patch_args = ["-p1"],
patches = ["@//third_party:libpyin.patch"],
strip_prefix = "libpyin-b38135390b335c3e8cea6ef35cf5093789b36dac",
urls = ["https://github.com/Sleepwalking/libpyin/archive/b38135390b335c3e8cea6ef35cf5093789b36dac.zip"],
)
http_archive(
name = "spline",
build_file = "@//third_party:spline.BUILD",
integrity = "sha256-DUK3fQ85jJrStykFh7YlxJw5ojN/bPqItqeTAgfZGjM=",
patch_args = ["-p1"],
patches = ["@//third_party:spline.patch"],
strip_prefix = "spline-5894beaf91e9adbfdbe5c6c9a1c60770e380e8e8",
urls = ["https://github.com/ttk592/spline/archive/5894beaf91e9adbfdbe5c6c9a1c60770e380e8e8.zip"],
)
http_archive(
name = "world",
build_file = "@//third_party:world.BUILD",
integrity = "sha256-IFTxKolh7TkbCJxAHDkPmD9+9+MfY+q8sVoTVWMAHJU=",
patch_args = ["-p1"],
patches = ["@//third_party:world.patch"],
strip_prefix = "World-f8dd5fb289db6a7f7f704497752bf32b258f9151",
urls = ["https://github.com/mmorise/World/archive/f8dd5fb289db6a7f7f704497752bf32b258f9151.zip"],
)