-
Notifications
You must be signed in to change notification settings - Fork 36
/
WORKSPACE
32 lines (27 loc) · 941 Bytes
/
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
workspace(name = "build_stack_rules_hugo")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load("@build_stack_rules_hugo//hugo:rules.bzl", "github_hugo_theme", "hugo_repository")
hugo_repository(
name = "hugo",
extended = True,
version = "0.101.0",
)
github_hugo_theme(
name = "com_github_alex_shpak_hugo_book",
commit = "07048f7bf5097435a05c1e8b77241b0e478023c2", # June 3, 2019
sha256 = "2897befb721e2bde54bb8acb43887d84c2855956f8efad5bd761628fe7fe5339",
owner = "alex-shpak",
repo = "hugo-book",
)
http_archive(
name = "com_github_thegeeklab_hugo_geekdoc",
url = "https://github.com/thegeeklab/hugo-geekdoc/releases/download/v0.34.2/hugo-geekdoc.tar.gz",
sha256 = "7fdd57f7d4450325a778629021c0fff5531dc8475de6c4ec70ab07e9484d400e",
build_file_content="""
filegroup(
name = "files",
srcs = glob(["**"]),
visibility = ["//visibility:public"]
)
"""
)