-
Notifications
You must be signed in to change notification settings - Fork 0
/
deback.cabal
47 lines (42 loc) · 1.29 KB
/
deback.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
cabal-version: 2.4
name: deback
version: 0.0.4
synopsis: An opinionated backup and archive tool
description: Please see the README on GitHub at <https://github.com/telostat/deback#readme>
homepage: https://github.com/telostat/deback#readme
bug-reports: https://github.com/telostat/deback/issues
author: Vehbi Sinan Tunalioglu
maintainer: [email protected]
copyright: 2022 Teloscube Pte Ltd
license: MIT
license-file: LICENSE
category: System, Backup
build-type: Simple
extra-source-files:
CHANGELOG.md
README.md
executable deback
main-is: Main.hs
other-modules:
Deback.Cli
, Deback.Programs
, Deback.Tools.Autorestic
, Deback.Tools.Cryptsetup
, Deback.Tools.Format
, Deback.Tools.Mount
, Deback.Tools.Rrclone
, Deback.Tools.Smartctl
, Paths_deback
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends:
base ^>= 4.16.1.0
, aeson
, ansi-terminal
, bytestring
, optparse-applicative
, table-layout
, text
, typed-process
hs-source-dirs: app
default-language: Haskell2010