mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 01:26:14 +01:00
212bfc8c60
Signed-off-by: magic_rb <magic_rb@redalder.org>
70 lines
1.5 KiB
YAML
70 lines
1.5 KiB
YAML
name: microvmp
|
|
version: 0.1.0.0
|
|
github: "MagicRB/microvmp"
|
|
license: BSD-3-Clause
|
|
author: "Richard Brežák"
|
|
maintainer: "richard@brezak.sk"
|
|
copyright: " Richard Brežák 2023"
|
|
|
|
extra-source-files:
|
|
- README.md
|
|
- CHANGELOG.md
|
|
|
|
# Metadata used when publishing your package
|
|
# synopsis: Short description of your package
|
|
# category: Virtual Machines
|
|
|
|
# To avoid duplicated efforts in documentation and dealing with the
|
|
# complications of embedding Haddock markup inside cabal files, it is
|
|
# common to point users to the README.md file.
|
|
description: Please see the README on GitHub at <https://github.com/MagicRB/microvmp#readme>
|
|
|
|
dependencies:
|
|
- base >= 4.7 && < 5
|
|
- optparse-applicative
|
|
- effectful
|
|
- typed-process-effectful
|
|
- text
|
|
- bytestring
|
|
- filepath
|
|
- extra
|
|
- unix
|
|
- ansi-terminal
|
|
- colour
|
|
|
|
ghc-options:
|
|
- -Wall
|
|
- -Wcompat
|
|
- -Widentities
|
|
- -Wincomplete-record-updates
|
|
- -Wincomplete-uni-patterns
|
|
- -Wmissing-export-lists
|
|
- -Wmissing-home-modules
|
|
- -Wpartial-fields
|
|
- -Wredundant-constraints
|
|
|
|
library:
|
|
source-dirs: src
|
|
|
|
executables:
|
|
microvmp-exe:
|
|
main: Main.hs
|
|
source-dirs: app
|
|
ghc-options:
|
|
- -threaded
|
|
- -rtsopts
|
|
- -with-rtsopts=-N
|
|
dependencies:
|
|
- microvmp
|
|
|
|
tests:
|
|
microvmp-test:
|
|
main: Spec.hs
|
|
source-dirs: test
|
|
ghc-options:
|
|
- -threaded
|
|
- -rtsopts
|
|
- -with-rtsopts=-N
|
|
dependencies:
|
|
- microvmp
|