summaryrefslogtreecommitdiff
path: root/slackbuilder.cabal
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2023-08-04 21:33:21 +0200
committerEugen Wissner <belka@caraus.de>2023-08-04 21:33:21 +0200
commit028f64d25a93e0430f22240024e255eec12bfb09 (patch)
tree8782148d6eedf7558b3af2c75ba8410207340ea6 /slackbuilder.cabal
parent1bc410d86d0dcdb1fcb2eab74b0ace2b6781b0ff (diff)
downloadslackbuilder-028f64d25a93e0430f22240024e255eec12bfb09.tar.gz
Move packagist check to a Haskell binary
Diffstat (limited to 'slackbuilder.cabal')
-rw-r--r--slackbuilder.cabal40
1 files changed, 40 insertions, 0 deletions
diff --git a/slackbuilder.cabal b/slackbuilder.cabal
new file mode 100644
index 0000000..66418de
--- /dev/null
+++ b/slackbuilder.cabal
@@ -0,0 +1,40 @@
+cabal-version: 2.4
+name: slackbuilder
+version: 0.1.0.0
+
+-- A short (one-line) description of the package.
+-- synopsis:
+
+-- A longer description of the package.
+-- description:
+
+bug-reports: https://git.caraus.tech/OSS/slackbuilder/issues
+
+license: MPL-2.0
+license-files: LICENSE
+copyright: (c) 2023 Eugen Wissner
+
+author: Eugen Wissner
+maintainer: belka@caraus.de
+
+category: Build
+extra-source-files: CHANGELOG.md
+
+executable slackbuilder
+ main-is: Main.hs
+
+ -- Modules included in this executable, other than Main.
+ -- other-modules:
+
+ default-extensions:
+ OverloadedStrings
+ TemplateHaskell
+ build-depends:
+ aeson ^>= 2.2.0,
+ base ^>= 4.16.4.0,
+ req ^>=3.13,
+ text ^>= 2.0,
+ unordered-containers ^>= 0.2.19,
+ vector ^>= 0.13.0
+ hs-source-dirs: app
+ default-language: Haskell2010