aboutsummaryrefslogtreecommitdiff
path: root/frotate.cabal
blob: b9180b317bbfdc9af129b70395f41ce9c96a4690 (plain)
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
32
33
34
cabal-version: >=1.10
name: frotate
version: 0.1.1
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