diff options
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 |