1
1
mirror of https://github.com/nmattia/niv.git synced 2024-11-07 22:36:53 +03:00
niv/package.yaml

54 lines
890 B
YAML
Raw Normal View History

2019-01-18 01:00:48 +03:00
name: niv
2019-04-05 12:43:57 +03:00
license: MIT
2019-01-31 22:42:39 +03:00
ghc-options:
- -Wall
- -Werror
2019-06-12 14:48:59 +03:00
# For macOS: https://github.com/gibiansky/IHaskell/issues/942
- -optP-Wno-nonportable-include-path
2019-06-09 23:42:35 +03:00
dependencies:
2019-06-12 16:58:10 +03:00
- aeson
- aeson-pretty
2019-06-09 23:42:35 +03:00
- base
2019-06-12 16:58:10 +03:00
- bytestring
- directory
- file-embed
- filepath
- github
- hashable
2019-06-09 23:42:35 +03:00
- mtl
2019-06-12 16:58:10 +03:00
- optparse-applicative
- process
- string-qq
- text
2019-06-09 23:42:35 +03:00
- unliftio
2019-06-12 16:58:10 +03:00
- unordered-containers
2019-06-09 23:42:35 +03:00
library:
source-dirs:
- src
2019-01-18 01:00:48 +03:00
dependencies:
2019-01-23 23:55:26 +03:00
- aeson
2019-01-27 01:39:38 +03:00
- github
2019-06-09 23:42:35 +03:00
- tasty
- tasty-hunit
2019-01-23 23:55:26 +03:00
- unordered-containers
2019-06-09 23:42:35 +03:00
executables:
niv:
2019-06-12 16:58:10 +03:00
main: Niv.main
source-dirs: app
2019-06-09 23:42:35 +03:00
data-files:
- nix/sources.nix
dependencies:
- niv
2019-06-12 15:57:21 +03:00
niv-test:
2019-06-12 16:58:10 +03:00
main: NivTest.main
source-dirs: app
2019-06-12 15:57:21 +03:00
dependencies:
- tasty
- niv