Skip to content

Commit

Permalink
add package description to satisfy cabal (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-martin authored Nov 25, 2024
1 parent a43e52b commit 69396b1
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
10 changes: 9 additions & 1 deletion persistent-sql-lifted/package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,15 @@ maintainer: Freckle Education
category: Database
github: freckle/freckle-app
synopsis: Monad classes for running queries with Persistent and Esqueleto
description: Please see README.md
description: |
This package introduces two classes: MonadSqlBackend for monadic contexts in
which a SqlBackend is available, and MonadSqlBackend for contexts in which we
can execute a SQL transaction.
Additionally, this package provides variants of query-running utilities from
Persistent and Esqueleto which are concretized to use SqlBackend, generalized
to a MonadSqlBackend m constraint rather than "ReaderT backend", and wrapped in
checkpointCallStack so that exceptions will include call stacks.
extra-doc-files:
- README.md
Expand Down
9 changes: 8 additions & 1 deletion persistent-sql-lifted/persistent-sql-lifted.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,14 @@ cabal-version: 1.18
name: persistent-sql-lifted
version: 0.1.0.0
synopsis: Monad classes for running queries with Persistent and Esqueleto
description: Please see README.md
description: This package introduces two classes: MonadSqlBackend for monadic contexts in
which a SqlBackend is available, and MonadSqlBackend for contexts in which we
can execute a SQL transaction.
.
Additionally, this package provides variants of query-running utilities from
Persistent and Esqueleto which are concretized to use SqlBackend, generalized
to a MonadSqlBackend m constraint rather than "ReaderT backend", and wrapped in
checkpointCallStack so that exceptions will include call stacks.
category: Database
homepage: https://github.com/freckle/freckle-app#readme
bug-reports: https://github.com/freckle/freckle-app/issues
Expand Down

0 comments on commit 69396b1

Please sign in to comment.