101 lines
1.9 KiB
YAML
101 lines
1.9 KiB
YAML
name: budget
|
|
version: 0.1.0.0
|
|
github: "ndwarshuis/budget"
|
|
license: BSD3
|
|
author: "Nathan Dwarshuis"
|
|
maintainer: "ndwar@yavin4.ch"
|
|
copyright: "2022 Nathan Dwarshuis"
|
|
|
|
extra-source-files:
|
|
- README.md
|
|
- ChangeLog.md
|
|
|
|
# synopsis: Short description of your package
|
|
# category: Web
|
|
|
|
description: Please see the README on GitHub at <https://github.com/ndwarshuis/budget#readme>
|
|
|
|
default-extensions:
|
|
- OverloadedStrings
|
|
- FlexibleContexts
|
|
- FlexibleInstances
|
|
- InstanceSigs
|
|
- MultiParamTypeClasses
|
|
- EmptyCase
|
|
- LambdaCase
|
|
- MultiWayIf
|
|
- NamedFieldPuns
|
|
- TupleSections
|
|
- DeriveFoldable
|
|
- DeriveFunctor
|
|
- DeriveGeneric
|
|
- DeriveLift
|
|
- DeriveTraversable
|
|
- DerivingStrategies
|
|
- DeriveDataTypeable
|
|
- EmptyDataDecls
|
|
- PartialTypeSignatures
|
|
- GeneralizedNewtypeDeriving
|
|
- StandaloneDeriving
|
|
- BangPatterns
|
|
- TypeOperators
|
|
- ScopedTypeVariables
|
|
- TypeApplications
|
|
- ConstraintKinds
|
|
- RankNTypes
|
|
- GADTs
|
|
- DefaultSignatures
|
|
- NoImplicitPrelude
|
|
- FunctionalDependencies
|
|
- DataKinds
|
|
- TypeFamilies
|
|
- BinaryLiterals
|
|
- ViewPatterns
|
|
|
|
ghc-options:
|
|
- -Wall
|
|
- -Wcompat
|
|
- -Widentities
|
|
- -Wincomplete-record-updates
|
|
- -Wincomplete-uni-patterns
|
|
- -Wredundant-constraints
|
|
- -Wpartial-fields
|
|
- -Werror
|
|
- -O2
|
|
|
|
dependencies:
|
|
- base >= 4.12 && < 10
|
|
- rio >= 0.1.21.0
|
|
- persistent >= 2.13.3.1
|
|
- persistent-sqlite
|
|
- monad-logger >= 0.3.36
|
|
- conduit >= 1.3.4.2
|
|
- dhall >= 1.41.2
|
|
- lens
|
|
- text
|
|
- time >= 1.9.3
|
|
- containers >= 0.6.4.1
|
|
- ghc
|
|
- cassava
|
|
- regex-tdfa
|
|
- esqueleto
|
|
- template-haskell <= 2.16.0.0
|
|
- hashable >= 1.3.4.0
|
|
- optparse-applicative
|
|
- recursion-schemes
|
|
- data-fix
|
|
- filepath
|
|
- mtl
|
|
|
|
library:
|
|
source-dirs: lib/
|
|
|
|
executables:
|
|
pwncash:
|
|
main: Main.hs
|
|
source-dirs: app
|
|
ghc-options:
|
|
- -threaded
|
|
dependencies:
|
|
- budget
|