diff options
author | CoprDistGit <infra@openeuler.org> | 2023-10-30 03:33:57 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-10-30 03:33:57 +0000 |
commit | 7bfd31f6c808b8d79caef97582bba69e9f339e57 (patch) | |
tree | 5cf74054db060679c862d72a6c937147341ed106 /singleton-bool.cabal | |
parent | 3f0d7d3356ae86afef8686d87a40abf11f52221a (diff) |
automatic import of ghc-singleton-boolopeneuler23.09
Diffstat (limited to 'singleton-bool.cabal')
-rwxr-xr-x | singleton-bool.cabal | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/singleton-bool.cabal b/singleton-bool.cabal new file mode 100755 index 0000000..864dd98 --- /dev/null +++ b/singleton-bool.cabal @@ -0,0 +1,49 @@ +cabal-version: >=1.10 +name: singleton-bool +version: 0.1.6 +x-revision: 2 +synopsis: Type level booleans +description: + Type level booleans. + . + @singletons@ package provides similar functionality, + but it has tight dependency constraints. + +category: Web +homepage: https://github.com/phadej/singleton-bool#readme +bug-reports: https://github.com/phadej/singleton-bool/issues +author: Oleg Grenrus <oleg.grenrus@iki.fi> +maintainer: Oleg Grenrus <oleg.grenrus@iki.fi> +license: BSD3 +license-file: LICENSE +build-type: Simple +extra-source-files: CHANGELOG.md +tested-with: + GHC ==7.8.4 + || ==7.10.3 + || ==8.0.2 + || ==8.2.2 + || ==8.4.4 + || ==8.6.5 + || ==8.8.4 + || ==8.10.4 + || ==9.0.2 + || ==9.2.4 + || ==9.4.1 + +source-repository head + type: git + location: https://github.com/phadej/singleton-bool + +library + hs-source-dirs: src + ghc-options: -Wall + build-depends: + base >=4.7 && <4.18 + , boring >=0.2 && <0.3 + , dec >=0.0.3 && <0.1 + , deepseq >=1.3 && <1.5 + , some >=1.0.3 && <1.1 + + exposed-modules: Data.Singletons.Bool + default-language: Haskell2010 |