summaryrefslogtreecommitdiff
path: root/Haskell/merchant-api-tutorial/taler-merchant-api-tutorial.cabal
diff options
context:
space:
mode:
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