packages feed

native-0.1.0.0: native.cabal

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

data-files:            *.ps1
data-dir:              src/PowerShell

library
  hs-source-dirs:      src
  exposed-modules:     SetupNative
                       Install
                       PowerShell
                       Update
  other-modules:       Paths_native
  build-depends:       base >= 4.7 && < 5
                     , directory
                     , filepath
                     , process
                     , shelly
                     , text
                     , bytestring
  default-language:    Haskell2010
  ghc-options:         -Wall
  default-extensions:  OverloadedStrings

executable native-exe
  hs-source-dirs:      app
  main-is:             Main.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N -Wall
  build-depends:       base
                     , native
                     , optparse-applicative
  default-language:    Haskell2010
  default-extensions:  OverloadedStrings


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

source-repository head
  type:     git
  location: https://github.com/githubuser/native