nixpkgs-update/package.yaml

106 lines
2.0 KiB
YAML
Raw Normal View History

2018-04-04 11:19:09 +03:00
name: nixpkgs-update
2022-08-13 17:14:28 +03:00
version: 0.4.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
2022-08-13 17:14:28 +03:00
copyright: 2018-2022 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 -fplugin=Polysemy.Plugin
default-extensions:
- DataKinds
- FlexibleContexts
- GADTs
- LambdaCase
- PolyKinds
- RankNTypes
- ScopedTypeVariables
- TypeApplications
- TypeFamilies
- TypeOperators
- BlockArguments
2018-12-24 03:14:33 +03:00
2018-03-31 06:07:46 +03:00
dependencies:
2019-09-04 18:47:05 +03:00
- aeson
- base >= 4.13 && < 5
2019-06-08 07:02:14 +03:00
- bytestring
2019-09-04 18:47:05 +03:00
- conduit
2019-06-08 07:02:14 +03:00
- containers
2019-09-04 18:47:05 +03:00
- cryptohash-sha256
- directory
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
- http-client
2020-01-20 02:13:28 +03:00
- http-client-tls
2019-09-04 18:47:05 +03:00
- http-conduit
- http-types
2019-09-04 18:47:05 +03:00
- iso8601-time
2019-06-08 07:02:14 +03:00
- lifted-base
- mtl
- neat-interpolation
2018-04-04 02:03:46 +03:00
- optparse-applicative
2019-06-08 07:02:14 +03:00
- parsec
- parsers
2019-10-01 18:45:12 +03:00
- partial-order
- polysemy
- polysemy-plugin
- regex-applicative-text
2020-01-20 02:13:28 +03:00
- servant
- servant-client
2019-09-18 14:47:36 +03:00
- sqlite-simple
2019-06-08 07:02:14 +03:00
- template-haskell
2019-10-01 18:45:12 +03:00
- temporary
2018-04-05 19:46:30 +03:00
- text
- th-env
- time
2019-06-08 07:02:14 +03:00
- transformers
- typed-process
2018-07-11 05:30:34 +03:00
- unix
2020-01-20 02:13:28 +03:00
- unordered-containers
2018-09-06 16:47:09 +03:00
- vector
2019-09-24 16:49:33 +03:00
- versions
- xdg-basedir
2019-09-04 18:47:05 +03:00
- zlib
2018-03-31 06:07:46 +03:00
library:
source-dirs: src
2021-08-25 04:35:09 +03:00
when:
- condition: false
other-modules: Paths_nixpkgs_update
2018-03-31 17:33:19 +03:00
tests:
spec:
main: Spec.hs
source-dirs:
- test
2018-03-31 17:33:19 +03:00
dependencies:
- hspec
- hspec-discover
- nixpkgs-update
- doctest
2021-08-25 04:35:09 +03:00
when:
- condition: false
other-modules: Paths_nixpkgs_update
executables:
nixpkgs-update:
source-dirs: app
main: Main.hs
dependencies:
- nixpkgs-update
2021-08-25 04:35:09 +03:00
when:
- condition: false
other-modules: Paths_nixpkgs_update