packages feed

miv-0.4.2: miv.cabal

name:                   miv
version:                0.4.2
author:                 itchyny <https://github.com/itchyny>
maintainer:             itchyny <https://github.com/itchyny>
license:                MIT
license-file:           LICENSE
category:               Compiler
build-type:             Simple
cabal-version:          >=1.10
synopsis:               Vim plugin manager written in Haskell
description:            The miv command is a cli tool to manage Vim plugins.

executable miv
  hs-source-dirs:       src
  main-is:              Main.hs
  ghc-options:          -threaded -Wall
  default-language:     Haskell2010
  other-modules:        Plugin
                      , Setting
                      , Mode
                      , Command
                      , Mapping
                      , ShowText
                      , ReadText
                      , VimScript
                      , Git
                      , Paths_miv
  build-depends:        base >= 4.9 && < 5
                      , ghc-prim
                      , process
                      , async
                      , concurrent-output
                      , time
                      , directory
                      , hashable
                      , aeson
                      , yaml
                      , text
                      , unordered-containers
                      , monad-parallel
                      , filepath
                      , unix-compat
                      , xdg-basedir

test-suite spec
  hs-source-dirs:       test
  main-is:              Spec.hs
  type:                 exitcode-stdio-1.0
  default-language:     Haskell2010
  build-depends:        base >= 4.9 && < 5
                      , ghc-prim
                      , process
                      , time
                      , directory
                      , hashable
                      , hspec
                      , aeson
                      , yaml
                      , text
                      , unordered-containers
                      , monad-parallel

source-repository head
  type:     git
  location: git@github.com:itchyny/miv.git