From 97d09256265fef99c2ae1b7788b84a2b83055fb1 Mon Sep 17 00:00:00 2001 From: Zachary Palmer Date: Fri, 6 Aug 2021 13:43:57 -0400 Subject: [PATCH] Added .cabal file to repository in line with https://github.com/commercialhaskell/stack/issues/5210 --- .gitignore | 3 -- intensional-algebraic-structures.cabal | 56 ++++++++++++++++++++++++++ 2 files changed, 56 insertions(+), 3 deletions(-) create mode 100644 intensional-algebraic-structures.cabal diff --git a/.gitignore b/.gitignore index 7413bd4..72e74fa 100644 --- a/.gitignore +++ b/.gitignore @@ -2,8 +2,5 @@ .stack-work/ *~ -# generated by hpack via stack -*.cabal - # temp files *.lock diff --git a/intensional-algebraic-structures.cabal b/intensional-algebraic-structures.cabal new file mode 100644 index 0000000..9ea0ee9 --- /dev/null +++ b/intensional-algebraic-structures.cabal @@ -0,0 +1,56 @@ +cabal-version: 1.12 + +-- This file has been generated from package.yaml by hpack version 0.34.4. +-- +-- see: https://github.com/sol/hpack + +name: intensional-algebraic-structures +version: 0.1.0.0 +synopsis: Algebraic structures defined in terms of intensional functions. +description: Please see the README on GitHub at +homepage: https://github.com/zepalmer/intensional-algebraic-structures#readme +bug-reports: https://github.com/zepalmer/intensional-algebraic-structures/issues +author: Zachary Palmer +maintainer: zep_github@bahj.com +copyright: 2021 Zachary Palmer +license: BSD3 +license-file: LICENSE +build-type: Simple +extra-source-files: + README.md + ChangeLog.md + +source-repository head + type: git + location: https://github.com/zepalmer/intensional-algebraic-structures + +library + exposed-modules: + Control.Intensional.Applicative.Free + Control.Intensional.Monad.Free + Control.Intensional.Monad.State + Control.Intensional.Monad.Trans + Control.Intensional.Monad.Trans.Coroutine + Control.Intensional.Monad.Trans.Coroutine.SuspensionFunctors + Control.Intensional.Monad.Trans.List + Control.Intensional.Monad.Trans.State + other-modules: + Paths_intensional_algebraic_structures + hs-source-dirs: + src + build-depends: + base >=4.15 && <5 + default-language: Haskell2010 + +test-suite intensional-algebraic-structures-test + type: exitcode-stdio-1.0 + main-is: Spec.hs + other-modules: + Paths_intensional_algebraic_structures + hs-source-dirs: + test + ghc-options: -threaded -rtsopts -with-rtsopts=-N + build-depends: + base >=4.15 && <5 + , intensional-algebraic-structures + default-language: Haskell2010