aboutsummaryrefslogtreecommitdiff
path: root/hsm-status/hsm-status.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'hsm-status/hsm-status.cabal')
-rw-r--r--hsm-status/hsm-status.cabal39
1 files changed, 39 insertions, 0 deletions
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