summary refs log tree commit diff
path: root/beekeep.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'beekeep.cabal')
-rw-r--r--beekeep.cabal67
1 files changed, 67 insertions, 0 deletions
diff --git a/beekeep.cabal b/beekeep.cabal
new file mode 100644
index 0000000..15a3781
--- /dev/null
+++ b/beekeep.cabal
@@ -0,0 +1,67 @@
+cabal-version: 2.2
+
+-- This file has been generated from package.yaml by hpack version 0.37.0.
+--
+-- see: https://github.com/sol/hpack
+
+name:           beekeep
+version:        0.1.0.0
+description:    beekeeping simulator
+homepage:       https://github.com/melody-notpond/beekeep#readme
+bug-reports:    https://github.com/melody-notpond/beekeep/issues
+author:         melody
+maintainer:     me@melody.codes
+copyright:      idk
+license:        BSD-3-Clause
+license-file:   LICENSE
+build-type:     Simple
+extra-source-files:
+    README.md
+    CHANGELOG.md
+
+source-repository head
+  type: git
+  location: https://github.com/melody-notpond/beekeep
+
+library
+  exposed-modules:
+      Lib
+  other-modules:
+      Paths_beekeep
+  autogen-modules:
+      Paths_beekeep
+  hs-source-dirs:
+      src
+  ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints
+  build-depends:
+      base >=4.7 && <5
+  default-language: Haskell2010
+
+executable beekeep-exe
+  main-is: Main.hs
+  other-modules:
+      Paths_beekeep
+  autogen-modules:
+      Paths_beekeep
+  hs-source-dirs:
+      app
+  ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
+  build-depends:
+      base >=4.7 && <5
+    , beekeep
+  default-language: Haskell2010
+
+test-suite beekeep-test
+  type: exitcode-stdio-1.0
+  main-is: Spec.hs
+  other-modules:
+      Paths_beekeep
+  autogen-modules:
+      Paths_beekeep
+  hs-source-dirs:
+      test
+  ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
+  build-depends:
+      base >=4.7 && <5
+    , beekeep
+  default-language: Haskell2010