aboutsummaryrefslogtreecommitdiff
path: root/tomato.cabal
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2022-07-26 21:35:06 +0100
committerJuan J. Martinez <jjm@usebox.net>2022-07-26 21:35:06 +0100
commit91c02ee3009aa40f697f16a306d973296ae82e23 (patch)
treee54b52910417fa4ec107a210d33c27b5c6572523 /tomato.cabal
downloadtomato-hs-91c02ee3009aa40f697f16a306d973296ae82e23.tar.gz
tomato-hs-91c02ee3009aa40f697f16a306d973296ae82e23.zip
Initial import0.1.0
Diffstat (limited to 'tomato.cabal')
-rw-r--r--tomato.cabal25
1 files changed, 25 insertions, 0 deletions
diff --git a/tomato.cabal b/tomato.cabal
new file mode 100644
index 0000000..46d3ba3
--- /dev/null
+++ b/tomato.cabal
@@ -0,0 +1,25 @@
+cabal-version: 2.4
+name: tomato
+version: 0.1.0
+
+synopsis: Yet another pomodoro tool
+homepage: https://git.usebox.net/tomato-hs/about/
+
+license: MIT
+author: Juan J. Martinez
+maintainer: jjm@usebox.net
+
+copyright: (c) 2022 Juan J. Martinez
+extra-source-files:
+ CHANGELOG.md
+ , README.md
+ , COPYING
+
+executable tomato
+ main-is: Main.hs
+ build-depends:
+ base ^>=4.14.3.0
+ , directory ^>=1.3.6.2
+ , time ^>=1.11.1.1
+ hs-source-dirs: app
+ default-language: Haskell2010