packages feed

network-builder-0.1.0: network-builder.cabal

-- Initial network-builder.cabal generated by cabal init.  For further
--  documentation, see http://haskell.org/cabal/users-guide/

name:                network-builder
version:             0.1.0
synopsis:            Linux NetworkNameSpace Builder
description:         Linux NetworkNameSpace Builder
license:             BSD3
license-file:        LICENSE
author:              Junji Hashimoto
maintainer:          junji.hashimoto@gmail.com
-- copyright:           
stability:           Experimental
category:            Network
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

bug-reports:         https://github.com/junjihashimoto/network-builder/issues

extra-source-files:
  ChangeLog.md
  README.md

source-repository head
  type:           git
  location:       https://github.com/junjihashimoto/network-builder.git

library
  exposed-modules:     Network.Builder
                     , Network.Builder.Namespace
                     , Network.Builder.Tunnel
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4 && <5
                      ,aeson
                      ,yaml
                      ,shelly
                      ,text
                      ,bytestring

  -- hs-source-dirs:      
  ghc-options:       -Wall -O2
  default-language:    Haskell2010

executable network-builder
  main-is:             network-builder.hs
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.6 && <5
                      ,aeson
                      ,yaml
                      ,shelly
                      ,text
                      ,bytestring
                      ,optparse-applicative
                      ,network-builder
  -- hs-source-dirs:      
  default-language:    Haskell2010
  ghc-options:       -Wall

test-suite test
    type:              exitcode-stdio-1.0
    main-is:           test.hs
    hs-source-dirs:    tests,dist/build/autogen
    ghc-options:       -Wall

    build-depends:     base
                      ,hspec
                      ,hspec-server
                      ,cabal-test-bin
                      ,process
    Default-Language:   Haskell2010