Skip to content
qvm.cabal 1.42 KiB
Newer Older
Yuanle Song's avatar
Yuanle Song committed
name:                qvm
Yuanle Song's avatar
Yuanle Song committed
synopsis:            start KVM VM quickly
description:         Please see README.md
homepage:            http://example.com
license:             BSD3
license-file:        LICENSE
author:              Yuanle Song
maintainer:          sylecn@gmail.com
copyright:           2015, 2016 Yuanle Song <sylecn@gmail.com>
Yuanle Song's avatar
Yuanle Song committed
category:            System
build-type:          Simple
cabal-version:       >=1.10

executable qvm
  hs-source-dirs:      src
  main-is:             Main.hs
  default-language:    Haskell2010
  build-depends:       base >= 4.7 && < 5
                      ,optparse-applicative
                      ,xml
                      ,shakespeare
                      ,template-haskell
                      ,cryptohash
                      ,bytestring
                      ,directory
                      ,conduit
                      ,conduit-extra
                      ,resourcet
                      ,http-conduit
                      ,filepath
                      ,extra
  other-modules:       Types
                      ,Domain
                      ,RenderFile
                      ,DomainOperation
  default-extensions:  OverloadedStrings
Yuanle Song's avatar
Yuanle Song committed
  ghc-options:        -O2