aboutsummaryrefslogtreecommitdiffhomepage
path: root/srem.cabal
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2015-03-29 14:33:49 +0900
committerSean Whitton <spwhitton@spwhitton.name>2015-03-29 14:33:49 +0900
commit007c2c303d727727f1755ac7911fe995fad098e0 (patch)
tree29e7aabb183084191dc7b2e42a189c532009afa7 /srem.cabal
downloadsrem-007c2c303d727727f1755ac7911fe995fad098e0.tar.gz
initial commit: rewriting srem in Haskell
Diffstat (limited to 'srem.cabal')
-rw-r--r--srem.cabal20
1 files changed, 20 insertions, 0 deletions
diff --git a/srem.cabal b/srem.cabal
new file mode 100644
index 0000000..dfc7d87
--- /dev/null
+++ b/srem.cabal
@@ -0,0 +1,20 @@
+name: srem
+version: 2.0.0
+synopsis: Timed reminders as notifications
+homepage: https://github.com/spwhitton/srem.git
+license: GPL-3
+license-file: LICENSE
+author: Sean Whitton
+maintainer: spwhitton@spwhitton.name
+category: Text
+build-type: Simple
+cabal-version: >=1.10
+
+executable srem
+ main-is: Main.hs
+ build-depends: base
+ , directory
+ , process
+ , regex-posix
+ hs-source-dirs: src
+ default-language: Haskell2010