summaryrefslogtreecommitdiff
path: root/fsmgr.cabal
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2018-06-17 16:14:53 -0400
committerAndrew Cady <d@jerkface.net>2018-06-17 16:15:40 -0400
commit019a2a64ffd8286f2f272199bedca1d62589764a (patch)
tree8e4f631bee787bb339386c9318840c0047a4d0c5 /fsmgr.cabal
initial commit
Diffstat (limited to 'fsmgr.cabal')
-rw-r--r--fsmgr.cabal53
1 files changed, 53 insertions, 0 deletions
diff --git a/fsmgr.cabal b/fsmgr.cabal
new file mode 100644
index 0000000..06a6bdb
--- /dev/null
+++ b/fsmgr.cabal
@@ -0,0 +1,53 @@
1name: fsmgr
2version: 0.1.0.0
3-- description: Please see the README on GitHub at <https://github.com/afcady/fsmgr#readme>
4-- homepage: https://github.com/afcady/fsmgr#readme
5-- bug-reports: https://github.com/afcady/fsmgr/issues
6author: Andrew Cady
7maintainer: d@jerkface.net
8copyright: AllRightsReserved
9-- license-file: LICENSE
10build-type: Simple
11cabal-version: >= 1.10
12-- extra-source-files:
13-- ChangeLog.md
14-- README.md
15
16source-repository head
17 type: git
18 location: https://github.com/afcady/fsmgr
19
20library
21 exposed-modules:
22 Crypto.Hash.Types.Digest.Read
23 other-modules:
24 Paths_fsmgr
25 hs-source-dirs:
26 src
27 build-depends:
28 base >=4.7 && <5, rebase, optparse-applicative, typed-process,
29 directory, filepath, yaml, lens, lens-aeson, cryptonite, memory, basement
30 default-language: Haskell2010
31
32executable fsmgr
33 main-is: fsmgr.hs
34 other-modules:
35 Paths_fsmgr
36 ghc-options: -threaded -rtsopts -with-rtsopts=-N -W -Wall
37 build-depends:
38 base >=4.7 && <5, rebase, optparse-applicative, typed-process,
39 directory, filepath, yaml, lens, lens-aeson, cryptonite, memory, basement, fsmgr
40 default-language: Haskell2010
41
42-- test-suite fsmgr-test
43-- type: exitcode-stdio-1.0
44-- main-is: Spec.hs
45-- other-modules:
46-- Paths_fsmgr
47-- hs-source-dirs:
48-- test
49-- ghc-options: -threaded -rtsopts -with-rtsopts=-N
50-- build-depends:
51-- base >=4.7 && <5
52-- , fsmgr
53-- default-language: Haskell2010