packages feed

native-0.1.0.1: native.cabal

name:                native
version:             0.1.0.1
synopsis:            Native library manager for Windows
description:         Native library manager for Windows
license:             BSD3
license-file:        LICENSE
author:              Luka Horvat
maintainer:          luka.horvat9@gmail.com
copyright:           2016 Luka Horvat
category:            Utility
build-type:          Simple
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
  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://gitlab.com/LukaHorvat/native