BUCK
 1  load("@toolchains//:purescript.bzl", "purescript_app")
 2  
 3  purescript_app(
 4      name = "halogen-todo",
 5      srcs = glob(["src/**/*.purs"]),
 6      spago_yaml = "spago.yaml",
 7      main = "Main",
 8      index_html = "index.html",
 9      style_css = "style.css",
10  )