packages feed

gpio-0.1.0.0: gpio.cabal

name:                gpio
version:             0.1.0.0
synopsis:            Simple project template from stack
description:         Please see README.md
homepage:            http://github.com/githubuser/gpio#readme
license:             BSD3
license-file:        LICENSE
author:              Author name here
maintainer:          example@example.com
copyright:           2016 Author name here
category:            Web
build-type:          Simple
cabal-version:       >=1.10


library
  hs-source-dirs:   src/lib
  ghc-options:      -Wall
  default-language: Haskell2010
  exposed-modules: System.GPIO, System.GPIO.Types
  default-extensions:
      OverloadedStrings NoImplicitPrelude LambdaCase
      StandaloneDeriving FlexibleContexts ScopedTypeVariables
      KindSignatures DataKinds GADTs
  build-depends:
      base >= 4.5 && < 5,
      basic-prelude,
      string-conversions,
      monad-control

executable gpio
  hs-source-dirs:   src/gpio
  ghc-options:      -Wall
  default-language: Haskell2010
  main-is:          Main.hs
  build-depends:
      base >= 4.5 && < 5,
      gpio,
      basic-prelude
  default-extensions:
      OverloadedStrings NoImplicitPrelude LambdaCase
      StandaloneDeriving FlexibleContexts ScopedTypeVariables
      KindSignatures DataKinds GADTs