diff options
author | Tom Smeding <tom@tomsmeding.com> | 2023-07-09 16:23:40 +0200 |
---|---|---|
committer | Tom Smeding <tom@tomsmeding.com> | 2023-07-09 16:23:40 +0200 |
commit | 4b41e11d6116c5552f396ea1cc261b95bfc81222 (patch) | |
tree | d7d069983e5ac912a8c15d840f6f1ff471a73d07 /hhexed.cabal |
Diffstat (limited to 'hhexed.cabal')
-rw-r--r-- | hhexed.cabal | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/hhexed.cabal b/hhexed.cabal new file mode 100644 index 0000000..5d82ce9 --- /dev/null +++ b/hhexed.cabal @@ -0,0 +1,25 @@ +cabal-version: >=1.10 +name: hhexed +synopsis: Hex viewer, editor and differ +version: 0.1.0.0 +license: MIT +author: Tom Smeding +maintainer: tom@tomsmeding.com +build-type: Simple + +executable hhexed + main-is: + Main.hs + other-modules: + Optparse + build-depends: + base >= 4.17 && < 4.18, + bytestring, + optparse-applicative, + terminal-io + hs-source-dirs: + src + default-language: + Haskell2010 + ghc-options: + -Wall -threaded |