1
1
mirror of https://github.com/nmattia/niv.git synced 2024-07-08 20:16:30 +03:00
niv/package.yaml
2023-03-12 12:44:53 +01:00

74 lines
1.4 KiB
YAML

{
"name": "niv",
"version": "0.2.22",
"license": "MIT",
"author": "Nicolas Mattia <nicolas@nmattia.com>",
"maintainer": "Nicolas Mattia <nicolas@nmattia.com>",
"copyright": "(c) 2019 Nicolas Mattia",
"category": "Development",
"github": "nmattia/niv",
"synopsis": "Easy dependency management for Nix projects",
"description": "Easy dependency management for Nix projects.",
"ghc-options": [
"-Wall",
"-optP-Wno-nonportable-include-path"
],
"data-files": [
"nix/sources.nix"
],
"extra-source-files": [
"README.md"
],
"dependencies": [
"aeson >= 2",
"aeson-pretty",
"ansi-terminal",
"base < 5",
"bytestring",
"directory",
"file-embed",
"filepath",
"hashable",
"http-conduit",
"mtl",
"optparse-applicative",
"process",
"profunctors",
"pureMD5",
"string-qq",
"text",
"unliftio",
"unordered-containers"
],
"library": {
"source-dirs": [
"src"
],
"dependencies": [
"aeson",
"tasty",
"tasty-hunit",
"unordered-containers"
]
},
"executables": {
"niv": {
"main": "Niv.main",
"source-dirs": "app",
"dependencies": [
"niv"
]
}
},
"tests": {
"unit": {
"main": "NivTest.main",
"source-dirs": "app",
"dependencies": [
"tasty",
"niv"
]
}
}
}