nixpkgs-update/package.yaml

71 lines
1.4 KiB
YAML
Raw Normal View History

2018-04-04 11:19:09 +03:00
name: nixpkgs-update
2018-03-31 06:07:46 +03:00
version: 0.2.0
synopsis: Tool for semi-automatic updating of nixpkgs repository
description: nixpkgs-update provides tools for updating of nixpkgs
packages in a semi-automatic way. Mainly, it is used to run the GitHub
bot @r-ryantm, but the underlying update mechanisms should be
generally useful and in a later version should be exposed as a
command-line tool.
2019-06-08 15:45:04 +03:00
license: CC0-1.0
author: Ryan Mulligan et al.
2018-03-31 06:07:46 +03:00
maintainer: ryan@ryantm.com
2019-06-08 15:45:04 +03:00
copyright: 2018-2019 Ryan Mulligan et al.
2018-03-31 06:07:46 +03:00
category: Web
extra-source-files:
- README.md
github: ryantm/nixpkgs-update
ghc-options: -Wall -O2 -flate-specialise -fspecialise-aggressively
default-extensions:
- DataKinds
- FlexibleContexts
- GADTs
- LambdaCase
- PolyKinds
- RankNTypes
- ScopedTypeVariables
- TypeApplications
- TypeFamilies
- TypeOperators
2018-12-24 03:14:33 +03:00
2018-03-31 06:07:46 +03:00
dependencies:
- base >= 4.7 && < 5
2019-06-08 07:02:14 +03:00
- bytestring
- containers
2018-04-04 17:59:17 +03:00
- directory >= 1.3 && < 1.4
2019-06-08 07:02:14 +03:00
- errors
2018-03-31 06:07:46 +03:00
- filepath
2019-06-08 07:02:14 +03:00
- github
- lifted-base
- mtl
2018-04-05 19:09:05 +03:00
- neat-interpolation >= 0.3 && < 0.4
2018-04-04 02:03:46 +03:00
- optparse-applicative
2019-06-08 07:02:14 +03:00
- parsec
- parsers
- polysemy
- regex-applicative-text
- shelly
2019-06-08 07:02:14 +03:00
- template-haskell
2018-04-05 19:46:30 +03:00
- text
- time >= 1.8 && < 1.10
2019-06-08 07:02:14 +03:00
- transformers
- typed-process
2018-07-11 05:30:34 +03:00
- unix
2018-09-06 16:47:09 +03:00
- vector
- xdg-basedir
2018-03-31 06:07:46 +03:00
executables:
2018-04-04 11:19:09 +03:00
nixpkgs-update:
2018-03-31 06:07:46 +03:00
source-dirs: src
main: Main.hs
2018-03-31 17:33:19 +03:00
tests:
doctests:
main: doctests.hs
ghc-options: -threaded
source-dirs: test
dependencies:
- doctest