diff options
| -rw-r--r-- | edit-lens/edit-lens.cabal | 55 | ||||
| -rw-r--r-- | edit-lens/package.yaml | 30 |
2 files changed, 62 insertions, 23 deletions
diff --git a/edit-lens/edit-lens.cabal b/edit-lens/edit-lens.cabal index 72c08c7..ab4c575 100644 --- a/edit-lens/edit-lens.cabal +++ b/edit-lens/edit-lens.cabal | |||
| @@ -1,26 +1,35 @@ | |||
| 1 | -- Initial edit-lens.cabal generated by cabal init. For further | 1 | -- This file has been generated from package.yaml by hpack version 0.19.3. |
| 2 | -- documentation, see http://haskell.org/cabal/users-guide/ | 2 | -- |
| 3 | -- see: https://github.com/sol/hpack | ||
| 3 | 4 | ||
| 4 | name: edit-lens | 5 | name: edit-lens |
| 5 | version: 0.0.0.0 | 6 | version: 0.0.0.0 |
| 6 | -- synopsis: | 7 | category: Control |
| 7 | -- description: | 8 | author: Gregor Kleen <aethoago@141.li> |
| 8 | license: BSD3 | 9 | license: BSD3 |
| 9 | license-file: LICENSE | 10 | license-file: LICENSE |
| 10 | author: Gregor Kleen | 11 | build-type: Simple |
| 11 | maintainer: aethoago@141.li | 12 | cabal-version: >= 1.10 |
| 12 | -- copyright: | 13 | |
| 13 | category: Control | 14 | extra-source-files: |
| 14 | build-type: Simple | 15 | ChangeLog.md |
| 15 | extra-source-files: ChangeLog.md | 16 | |
| 16 | cabal-version: >=1.10 | 17 | source-repository head |
| 18 | type: git | ||
| 19 | location: https://git.yggdrasil.li/gkleen/pub/bachelor-thesis | ||
| 17 | 20 | ||
| 18 | library | 21 | library |
| 19 | exposed-modules: Control.Lens.Edit | 22 | hs-source-dirs: |
| 20 | -- other-modules: | 23 | src |
| 21 | -- other-extensions: | 24 | default-extensions: TypeFamilies FlexibleContexts FlexibleInstances MultiParamTypeClasses FunctionDependencies AllowAmbiguousTypes TypeApplication GADTs |
| 22 | build-depends: base >=4.9 && <4.10 | 25 | build-depends: |
| 23 | , lens | 26 | base |
| 24 | , data-default | 27 | , lens |
| 25 | hs-source-dirs: src | 28 | exposed-modules: |
| 26 | default-language: Haskell2010 | 29 | Control.Edit |
| 30 | Control.Edit.Tree | ||
| 31 | Control.Lens.Edit | ||
| 32 | other-modules: | ||
| 33 | Control.Lens.Edit.Compose | ||
| 34 | Paths_edit_lens | ||
| 35 | default-language: Haskell2010 | ||
diff --git a/edit-lens/package.yaml b/edit-lens/package.yaml new file mode 100644 index 0000000..01b83fa --- /dev/null +++ b/edit-lens/package.yaml | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | name: edit-lens | ||
| 2 | version: 0.0.0.0 | ||
| 3 | license: BSD3 | ||
| 4 | license-file: LICENSE | ||
| 5 | author: Gregor Kleen <aethoago@141.li> | ||
| 6 | category: Control | ||
| 7 | build-type: Simple | ||
| 8 | extra-source-files: | ||
| 9 | - ChangeLog.md | ||
| 10 | git: https://git.yggdrasil.li/gkleen/pub/bachelor-thesis | ||
| 11 | |||
| 12 | library: | ||
| 13 | default-extensions: | ||
| 14 | - TypeFamilies | ||
| 15 | - FlexibleContexts | ||
| 16 | - FlexibleInstances | ||
| 17 | - MultiParamTypeClasses | ||
| 18 | - FunctionDependencies | ||
| 19 | - AllowAmbiguousTypes | ||
| 20 | - TypeApplication | ||
| 21 | - GADTs | ||
| 22 | source-dirs: src | ||
| 23 | dependencies: | ||
| 24 | - base | ||
| 25 | - lens | ||
| 26 | exposed-modules: | ||
| 27 | - Control.Edit | ||
| 28 | - Control.Edit.Tree | ||
| 29 | - Control.Lens.Edit | ||
| 30 | |||
