name:                nmis-parser
version:             0.1.0.1
synopsis:            NMIS file parser
homepage:            https://github.com/v0d1ch/nmis-parser#readme
license:             BSD3
license-file:        LICENSE
author:              Sasa Bogicevic
maintainer:          brutallesale@gmail.com
copyright:           2017 Sasa Bogicevic
category:            Text, Parsers
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

description:
     Parser for __NMIS__ (Network Management Information System) files to record type. Main module to use is __Text.Nmis__ and __parseNmis__ function

library
  hs-source-dirs:      src
  exposed-modules:     Text.Nmis
                     , Text.Internal.Helper
                     , Text.Internal.NmisTypes
  build-depends:       base >= 4.7 && < 5
                     , containers
                     , megaparsec < 5.3.2
  default-language:    Haskell2010


test-suite nmis-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , Nmis
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/v0d1ch/nmis-parser