-
Notifications
You must be signed in to change notification settings - Fork 3
/
ghci-hexcalc.cabal
48 lines (45 loc) · 1.65 KB
/
ghci-hexcalc.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: ghci-hexcalc
version: 0.1.2.0
synopsis: GHCi as a Hex Calculator interactive
description:
This package defines operations for an interactive hex-caluclator using GHCi.
This is a simple and casual interactive tool like Perl and Excel
for daily work.
homepage: https://github.com/takenobu-hs/ghci-hexcalc
license: BSD3
license-file: LICENSE
author: Takenobu Tani
maintainer: takenobu.hs@gmail.com
copyright: 2018 Takenobu Tani
category: Data
build-type: Simple
tested-with: GHC==9.4.8, GHC==9.2.7, GHC==8.6.5, GHC==8.4.3
extra-source-files: ChangeLog.md,
README.md,
example/example.ghci
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/takenobu-hs/ghci-hexcalc.git
library
exposed-modules: Data.GHex
other-extensions: GeneralizedNewtypeDeriving,
BangPatterns,
BinaryLiterals,
HexFloatLiterals,
NumericUnderscores
build-depends: base >=4.7 && <5,
binary < 0.9
hs-source-dirs: src
default-language: Haskell2010
test-suite test-ghci-hexcalc
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base >=4.7 && <5,
binary < 0.9,
doctest,
QuickCheck,
ghci-hexcalc
default-language: Haskell2010