-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.yaml
105 lines (98 loc) · 2.02 KB
/
package.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
name: nixpkgs-update
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.
license: CC0-1.0
author: Ryan Mulligan et al.
maintainer: ryan@ryantm.com
copyright: 2018-2022 Ryan Mulligan et al.
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
dependencies:
- aeson
- base >= 4.13 && < 5
- bytestring
- conduit
- containers
- cryptohash-sha256
- directory
- errors
- filepath
- github
- http-client
- http-client-tls
- http-conduit
- http-types
- iso8601-time
- lifted-base
- mtl
- neat-interpolation
- optparse-applicative
- parsec
- parsers
- partial-order
- polysemy
- polysemy-plugin
- regex-applicative-text
- servant
- servant-client
- sqlite-simple
- template-haskell
- temporary
- text
- th-env
- time
- transformers
- typed-process
- unix
- unordered-containers
- vector
- versions
- xdg-basedir
- zlib
library:
source-dirs: src
when:
- condition: false
other-modules: Paths_nixpkgs_update
tests:
spec:
main: Spec.hs
source-dirs:
- test
dependencies:
- hspec
- hspec-discover
- nixpkgs-update
- doctest
when:
- condition: false
other-modules: Paths_nixpkgs_update
executables:
nixpkgs-update:
source-dirs: app
main: Main.hs
dependencies:
- nixpkgs-update
when:
- condition: false
other-modules: Paths_nixpkgs_update