From a775330b4fa17fb367e55343e6fda6c7ae9e34b4 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Sun, 2 Jul 2023 22:58:30 +0200 Subject: Bootstrapped my haskell client --- haskell/package.yaml | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 haskell/package.yaml (limited to 'haskell/package.yaml') diff --git a/haskell/package.yaml b/haskell/package.yaml new file mode 100644 index 0000000..8023a22 --- /dev/null +++ b/haskell/package.yaml @@ -0,0 +1,62 @@ +name: spacetraders +version: 0.1.0.0 +github: "adyxax/spacetraders" +license: EUPL-1.2 +author: "Julien Dessaux" +maintainer: "julien.dessaux@adyxax.org" +copyright: "2023 Julien Dessaux" + +extra-source-files: +- README.md +- CHANGELOG.md + +synopsis: My spacetraders.io game client implementation +category: Games + +description: Please see the README on GitHub at + +dependencies: +- aeson +- base >= 4.7 && < 5 +- bytestring +- http-conduit +- http-types +- sqlite-simple +- text +- raw-strings-qq + +ghc-options: +- -Wall +- -Wcompat +- -Widentities +- -Wincomplete-record-updates +- -Wincomplete-uni-patterns +- -Wmissing-export-lists +- -Wmissing-home-modules +- -Wpartial-fields +- -Wredundant-constraints + +library: + source-dirs: src + +executables: + spacetraders-exe: + main: Main.hs + source-dirs: app + ghc-options: + - -threaded + - -rtsopts + - -with-rtsopts=-N + dependencies: + - spacetraders + +tests: + spacetraders-test: + main: Spec.hs + source-dirs: test + ghc-options: + - -threaded + - -rtsopts + - -with-rtsopts=-N + dependencies: + - spacetraders -- cgit v1.2.3