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
|
load(
"@io_tweag_rules_haskell//haskell:haskell.bzl",
"haskell_library",
"haskell_test",
)
haskell_library(
name = "runfiles",
srcs = ["src/Bazel/Runfiles.hs"],
src_strip_prefix = "src",
visibility = ["//visibility:public"],
deps = [
"@hackage//:base",
"@hackage//:directory",
"@hackage//:filepath",
],
)
haskell_test(
name = "bin",
testonly = 1,
srcs = ["bin/Bin.hs"],
data = ["bin-data.txt"],
src_strip_prefix = "bin",
deps = [
":runfiles",
"@hackage//:base",
"@hackage//:filepath",
],
)
haskell_test(
name = "test",
srcs = ["test/Test.hs"],
data = [
"test-data.txt",
":bin",
],
src_strip_prefix = "test",
deps = [
":runfiles",
"@hackage//:base",
"@hackage//:filepath",
"@hackage//:process",
],
)
|