diff options
Diffstat (limited to 'network-byte-order.cabal')
-rwxr-xr-x | network-byte-order.cabal | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/network-byte-order.cabal b/network-byte-order.cabal new file mode 100755 index 0000000..e26efb3 --- /dev/null +++ b/network-byte-order.cabal @@ -0,0 +1,43 @@ +-- Initial network-byte-order.cabal generated by cabal init. For further +-- documentation, see http://haskell.org/cabal/users-guide/ + +name: network-byte-order +version: 0.1.6 +x-revision: 1 +synopsis: Network byte order utilities +description: Peek and poke functions for network byte order. +license: BSD3 +license-file: LICENSE +author: Kazu Yamamoto +maintainer: kazu@iij.ad.jp +-- copyright: +category: Network +build-type: Simple +-- extra-source-files: ChangeLog.md +cabal-version: >= 1.10 + +library + ghc-options: -Wall + exposed-modules: Network.ByteOrder + -- other-modules: + -- other-extensions: + build-depends: base >= 4.9 && < 5 + , bytestring + -- hs-source-dirs: + default-language: Haskell2010 + if impl(ghc >= 8) + default-extensions: Strict StrictData + +test-suite doctest + type: exitcode-stdio-1.0 + default-language: Haskell2010 + hs-source-dirs: test + ghc-options: -Wall + main-is: doctests.hs + build-depends: base + , bytestring + , doctest + +source-repository head + type: git + location: git://github.com/kazu-yamamoto/network-byte-order.git |