From dc6bf1472c930ff1448c419d3205148bce1b787e Mon Sep 17 00:00:00 2001 From: Paul Oliver Date: Thu, 16 Jan 2025 18:26:16 -0800 Subject: Adds error and dummy-fail service --- hsm-status/hsm-status.cabal | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 hsm-status/hsm-status.cabal (limited to 'hsm-status/hsm-status.cabal') diff --git a/hsm-status/hsm-status.cabal b/hsm-status/hsm-status.cabal new file mode 100644 index 0000000..64528bd --- /dev/null +++ b/hsm-status/hsm-status.cabal @@ -0,0 +1,39 @@ +cabal-version: 3.4 +author: Paul Oliver +build-type: Simple +maintainer: contact@pauloliver.dev +name: hsm-status +version: 0.1.0.0 + +library + build-depends: + , base + , binary + , text + + exposed-modules: Hsm.Status.Error + ghc-options: -Wall -Wunused-packages + default-language: GHC2021 + +executable status + build-depends: + , base + , binary + , containers + , echo + , effectful-core + , hsm-core + , hsm-gpio + , log-effectful + , resourcet-effectful + , streamly-core + , text + + main-is: Main.hs + other-modules: Hsm.Status.Error + ghc-options: -Wall -Wunused-packages + + if !arch(x86_64) + ghc-options: -optl=-mno-fix-cortex-a53-835769 + + default-language: GHC2021 -- cgit v1.2.1