packages feed

tokstyle-0.0.1: tokstyle.cabal

name:                tokstyle
version:             0.0.1
synopsis:            TokTok C code style checker
description:         TokTok C code style checker
homepage:            https://toktok.github.io/tokstyle
license:             GPL-3
license-file:        LICENSE.md
author:              iphydf
maintainer:          iphydf@users.noreply.github.com
category:            Development
build-type:          Simple
cabal-version:       >=1.10

source-repository head
  type: git
  location: https://github.com/TokTok/tokstyle

library
  default-language:    Haskell2010
  exposed-modules:
      Tokstyle.C
    , Tokstyle.Cimple
    , Tokstyle.Sources
  other-modules:
      Tokstyle.C.Naming
    , Tokstyle.Cimple.Lexer
    , Tokstyle.Cimple.Parser
    , Tokstyle.Result
  ghc-options:
      -Wall
  build-depends:
      base >= 4 && < 5
    , array
    , deepseq
    , filepath
    , language-c
  hs-source-dirs:      src

executable check-c
  default-language: Haskell2010
  hs-source-dirs:
      tools
  ghc-options:
      -Wall
  build-depends:
      base < 5
    , tokstyle
  main-is: check-c.hs

executable check-cimple
  default-language: Haskell2010
  hs-source-dirs:
      tools
  ghc-options:
      -Wall
  build-depends:
      base < 5
    , tokstyle
  main-is: check-cimple.hs