summaryrefslogtreecommitdiff
path: root/Haskell/merchant-api-tutorial/taler-merchant-api-tutorial.cabal
diff options
context:
space:
mode:
authorVint Leenaars <vl.software@leenaa.rs>2023-09-30 17:40:34 +0200
committerVint Leenaars <vl.software@leenaa.rs>2023-09-30 17:40:34 +0200
commit4cd15738e030ac1bce359e5bda7dcd1fa7d4d77d (patch)
treea8b5f21125bb04ac675ce9904c6d4771bdfd2e71 /Haskell/merchant-api-tutorial/taler-merchant-api-tutorial.cabal
downloadcode-examples-main.tar.gz
code-examples-main.tar.bz2
code-examples-main.zip
init: Haskell Merchant API tutorialmain
Diffstat (limited to 'Haskell/merchant-api-tutorial/taler-merchant-api-tutorial.cabal')
-rw-r--r--Haskell/merchant-api-tutorial/taler-merchant-api-tutorial.cabal26
1 files changed, 26 insertions, 0 deletions
diff --git a/Haskell/merchant-api-tutorial/taler-merchant-api-tutorial.cabal b/Haskell/merchant-api-tutorial/taler-merchant-api-tutorial.cabal
new file mode 100644
index 0000000..a2bd751
--- /dev/null
+++ b/Haskell/merchant-api-tutorial/taler-merchant-api-tutorial.cabal
@@ -0,0 +1,26 @@
+-- SPDX-FileCopyrightText: 2023 Vint Leenaars <vl.software@leenaa.rs>
+-- SPDX-License-Identifier: Apache-2.0
+-- SPDX-License-Identifier: EUPL-1.2
+-- SPDX-License-Identifier: MPL-2.0
+-- SPDX-License-Identifier: AGPL-3.0-or-later
+
+name: taler-merchant-api-tutorial
+version: 0.1
+license: Apache-2.0, EUPL-1.2, MPL-2.0, AGPL-3.0-or-later
+license-file: LICENSE
+build-type: Simple
+extra-source-files: ChangeLog.md
+cabal-version: >=1.10
+
+executable taler-merchant-api-tutorial
+ main-is: Main.hs
+ build-depends: base >=4.9
+ , rio
+ , aeson
+ , stache
+ , HTTP
+ , network-uri
+ , http-client-tls
+ , http-types
+ hs-source-dirs: src
+ default-language: Haskell2010