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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
load("@io_tweag_rules_haskell//haskell:c2hs.bzl", "c2hs_library")
load(
"@io_tweag_rules_haskell//haskell:haskell.bzl",
"haskell_library",
"haskell_test",
)
package(default_testonly = 1)
genrule(
name = "codegen",
outs = [
"Gen.hs",
],
cmd = """
echo "module Gen (gen) where" >> $(location :Gen.hs)
echo "gen :: String" >> $(location :Gen.hs)
echo "gen = \\"gen\\"" >> $(location :Gen.hs)
""",
)
c2hs_library(
name = "chs",
srcs = ["Chs.chs"],
tags = ["requires_c2hs"],
)
haskell_library(
name = "hs-lib",
srcs = [
"Foo.hs",
"Hsc.hsc",
":chs",
":codegen",
],
tags = [
"requires_hackage",
"requires_zlib",
],
visibility = ["//visibility:public"],
deps = [
"//tests/data:ourclibrary",
"//tests/hackage:array",
"//tests/hackage:base",
"@zlib",
],
)
haskell_library(
name = "hs-lib-bad",
srcs = [
"Bad.hs",
],
tags = [
"manual",
"requires_zlib",
],
visibility = ["//visibility:public"],
deps = [
"//tests/data:ourclibrary",
"//tests/hackage:base",
"@hackage//:array",
"@zlib",
],
)
haskell_library(
name = "QuuxLib",
srcs = ["QuuxLib.hs"],
deps = ["//tests/hackage:base"],
)
haskell_test(
name = "hs-bin",
srcs = ["Quux.hs"],
visibility = ["//visibility:public"],
deps = [
":QuuxLib",
"//tests/hackage:base",
],
)
|