1
1
mirror of https://github.com/nmattia/niv.git synced 2024-09-18 19:07:19 +03:00
niv/package.yaml

68 lines
1.2 KiB
YAML
Raw Normal View History

2019-01-18 01:00:48 +03:00
name: niv
2020-02-02 15:27:43 +03:00
version: 0.2.13
2019-04-05 12:43:57 +03:00
license: MIT
2019-06-13 12:30:13 +03:00
author: Nicolas Mattia <nicolas@nmattia.com>
maintainer: Nicolas Mattia <nicolas@nmattia.com>
copyright: (c) 2019 Nicolas Mattia
category: Development
2019-06-18 11:27:00 +03:00
github: nmattia/niv
2019-06-13 12:30:13 +03:00
synopsis: Easy dependency management for Nix projects
description: Easy dependency management for Nix projects.
2019-04-05 12:43:57 +03:00
2019-01-31 22:42:39 +03:00
ghc-options:
- -Wall
2019-06-12 14:48:59 +03:00
# For macOS: https://github.com/gibiansky/IHaskell/issues/942
- -optP-Wno-nonportable-include-path
2019-09-23 23:37:17 +03:00
data-files:
- nix/sources.nix
2019-06-13 12:30:13 +03:00
extra-source-files:
- README.md
2019-06-09 23:42:35 +03:00
dependencies:
2019-06-12 16:58:10 +03:00
- aeson
- aeson-pretty
2019-09-08 20:43:31 +03:00
- ansi-terminal
2019-06-18 11:26:03 +03:00
- base < 5
2019-06-12 16:58:10 +03:00
- bytestring
- directory
- file-embed
- filepath
- hashable
2019-09-21 23:07:00 +03:00
- http-conduit
2019-06-09 23:42:35 +03:00
- mtl
2019-06-12 16:58:10 +03:00
- optparse-applicative
- process
2019-09-08 21:36:40 +03:00
- profunctors
2019-11-26 22:20:48 +03:00
- pureMD5
2019-06-12 16:58:10 +03:00
- 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-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
dependencies:
- niv
tests:
unit:
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