blob: 443f04e7be63c3463b41e5c0c9d4d842390501d4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
"""Runs ghc --help"""
hs_toolchain = "@io_tweag_rules_haskell//haskell:toolchain"
def _impl(ctx):
output = ctx.outputs.out
ghc = ctx.toolchains[hs_toolchain].tools.ghc
ctx.actions.run_shell(
inputs = [ghc],
outputs = [output],
progress_message = "Printing ghc help message",
command = "%s --help > %s" % (ghc.path, output.path),
)
ghc_help = rule(
implementation = _impl,
outputs = {"out": "out_file"},
toolchains = [hs_toolchain],
)
|