We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0032e8 commit 75a2030Copy full SHA for 75a2030
examples/MODULE.bazel
@@ -37,6 +37,7 @@ bazel_dep(
37
name = "bazel_skylib",
38
version = "1.7.1",
39
)
40
+bazel_dep(name = "platforms", version = "0.0.11")
41
42
non_module_deps = use_extension(":non_module_deps.bzl", "non_module_deps")
43
use_repo(
examples/rts/BUILD.bazel
@@ -12,6 +12,11 @@ haskell_toolchain_library(name = "rts")
12
haskell_library(
13
name = "add-one-hs",
14
srcs = ["One.hs"],
15
+ # FIXME: this is broken on Windows, see https://github.com/tweag/rules_haskell/issues/2299
16
+ target_compatible_with = select({
17
+ "@platforms//os:windows": ["@platforms//:incompatible"],
18
+ "//conditions:default": [],
19
+ }),
20
deps = [":base"],
21
22
0 commit comments