packages feed

unionmount-0.1.0.0: unionmount.cabal

cabal-version:      2.4
name:               unionmount
version:            0.1.0.0
license:            MIT
copyright:          2021 Sridhar Ratnakumar
maintainer:         srid@srid.ca
author:             Sridhar Ratnakumar
category:           Filesystem

-- TODO: Before hackage release.
-- A short (one-line) description of the package.
synopsis: Union mount filesystem paths into Haskell datastructures

-- A longer description of the package.
description: Union mount filesystem paths into Haskell datastructures

-- A URL where users can report bugs.
bug-reports: https://github.com/srid/unionmount

extra-source-files:
  LICENSE
  README.md

library
  build-depends:
    , async
    , base >=4.13.0.0 && <=4.17.0.0
    , bytestring
    , containers
    , data-default
    , directory
    , filepath
    , filepattern
    , fsnotify
    , lvar
    , monad-logger
    , mtl
    , relude
    , text
    , time
    , unliftio
    , with-utf8

  mixins:
    base hiding (Prelude),
    relude (Relude as Prelude, Relude.Container.One),
    relude

  ghc-options:
    -Wall -Wincomplete-record-updates -Wincomplete-uni-patterns

  exposed-modules:    System.UnionMount
  default-extensions:
    FlexibleContexts
    FlexibleInstances
    KindSignatures
    LambdaCase
    MultiParamTypeClasses
    MultiWayIf
    OverloadedStrings
    ScopedTypeVariables
    TupleSections
    ViewPatterns

  hs-source-dirs:     src
  default-language:   Haskell2010