๐Ÿ“ฆ ajeetdsouza / bbfs

๐Ÿ“„ package.yaml ยท 40 lines
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
40name:                bbfs
version:             0.1.0.0
license:             BSD3
author:              "Ajeet D'Souza"
maintainer:          "98ajeet@gmail.com"
copyright:           "2019 Ajeet D'Souza"

extra-source-files:
- README.md

# Metadata used when publishing your package
# synopsis:            Short description of your package
# category:            Web

# To avoid duplicated efforts in documentation and dealing with the
# complications of embedding Haddock markup inside cabal files, it is
# common to point users to the README.md file.
description:         A Haskell implementation of the Big Brother Filesystem

dependencies:
- HFuse
- base >= 4.7 && < 5
- bytestring
- unix
- unix-bytestring

library:
  source-dirs: src

executables:
  bbfs-exe:
    main:                Main.hs
    source-dirs:         app
    ghc-options:
    - -threaded
    - -rtsopts
    - -with-rtsopts=-N
    dependencies:
    - bbfs