-
Notifications
You must be signed in to change notification settings - Fork 1
/
wordle.cabal
32 lines (28 loc) · 1.05 KB
/
wordle.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
cabal-version: >=1.10
name: wordle
version: 0.1.2.1
synopsis: A Wordle clone for the terminal
description:
A clone of <https://www.powerlanguage.co.uk/ powerlanguage>'s daily word game <https://www.powerlanguage.co.uk/wordle/ Wordle>, for the terminal.
license: GPL-3
license-file: LICENSE
author: Nicholas Boyd Isacsson
maintainer: [email protected]
category: Game
build-type: Simple
data-files: data/*.txt
source-repository:location: https://github.com/nichobi/wordle
executable wordle
hs-source-dirs: src
main-is: Main.hs
other-modules: Draw
, Export
, Paths_wordle
, Util
, WordleComp
build-depends: base >=4.15 && <4.16
ghc-options: -threaded -Werror -Wall -Wno-name-shadowing
, brick
, vty
, time
default-language: Haskell2010