使用 hpack 时暂时从 `stack build` 中排除一个文件 (package.yaml)

exclude temporarily a file from a `stack build` when using hpack (package.yaml)

有人可能会处理 source-dirs 目录中的 haskell 文件并决定暂时不将此文件包含在 stack build 中。有没有一种简单的方法可以暂时从构建中排除文件?

明显的解决方法是将文件移动到另一个目录,但我希望这可以在 hpack 中以一种我在 hpack 文档中没有找到的简单方式实现。

在始终为假的条件下指定模块将使 hpack 的自动发现跳过它:

when:
- condition: false
  other-modules: Excluded.Module