aboutsummaryrefslogtreecommitdiff
path: root/frotate.cabal
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2019-08-28 19:47:07 +0200
committerIgor Pashev <pashev.igor@gmail.com>2019-08-31 22:22:45 +0200
commit1ff6303a5a08504a938fd845505323f6a9771977 (patch)
treebc6c4aadad33dde946fe4e124036c990859cceba /frotate.cabal
downloadfrotate.hs-1ff6303a5a08504a938fd845505323f6a9771977.tar.gz
Initial version0.1.0
Diffstat (limited to 'frotate.cabal')
-rw-r--r--frotate.cabal34
1 files changed, 34 insertions, 0 deletions
diff --git a/frotate.cabal b/frotate.cabal
new file mode 100644
index 0000000..d93a86e
--- /dev/null
+++ b/frotate.cabal
@@ -0,0 +1,34 @@
+cabal-version: >=1.10
+name: frotate
+version: 0.1.0
+license: PublicDomain
+maintainer: pashev.igor@gmail.com
+author: Igor Pashev
+synopsis: Advanced rotation of backups and other things
+category: Math, System
+build-type: Simple
+extra-source-files:
+ CHANGELOG.md
+ README.md
+
+source-repository head
+ type: git
+ location: https://github.com/ip1981/frotate.git
+
+executable frotate
+ main-is: Main.hs
+ hs-source-dirs: src
+ other-modules:
+ Lib
+ default-language: Haskell2010
+ build-depends:
+ base < 50,
+ time -any,
+ optparse-applicative -any
+
+test-suite doctests
+ main-is: doctests.hs
+ hs-source-dirs: test
+ default-language: Haskell2010
+ type: exitcode-stdio-1.0
+ build-depends: base, doctest >= 0.8