-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.yaml
102 lines (97 loc) · 2.07 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
name: update-nix-fetchgit
version: "0.2.11"
synopsis: A program to update fetchgit values in Nix expressions
description: |
This command-line utility is meant to be used by people maintaining Nix
expressions that fetch files from Git repositories. It automates the process
of keeping such expressions up-to-date with the latest upstream sources.
category: Nix
author: Ellie Hermaszewska
maintainer: Ellie Hermaszewska <[email protected]>
copyright: 2020 Ellie Hermaszewska
github: expipiplus1/update-nix-fetchgit
extra-source-files:
- package.yaml
- .gitignore
- default.nix
- CHANGELOG.md
- LICENSE
- README.md
- tests/fakeRepo.sh
- tests/test_*.in.nix
- tests/test_*.expected.nix
- tests/networked/test_*.in.nix
- tests/networked/test_*.expected.nix
executables:
update-nix-fetchgit:
main: Main.hs
source-dirs: app
ghc-options: -threaded -rtsopts -with-rtsopts=-N
dependencies:
- base >= 4.13
- optparse-applicative
- optparse-generic >= 1.4.2
- regex-tdfa
- say
- text >= 1.2
- update-nix-fetchgit
library:
source-dirs: src
dependencies:
- base >= 4.7 && < 5
- aeson >= 0.9
- async >= 2.1
- bytestring >= 0.10
- data-fix
- github-rest >= 1.1
- hnix >= 0.16 && < 0.17
- monad-validate
- mtl
- process >= 1.2
- regex-tdfa
- syb
- template-haskell
- text >= 1.2
- time >= 1.5
- utf8-string >= 1.0
- vector
tests:
update-nix-fetchgit-samples:
source-dirs: tests
main: Driver.hs
dependencies:
- base >= 4.7 && < 5
- directory
- filepath
- process
- tasty
- tasty-discover
- tasty-golden >= 2.3
- temporary
- text
- update-nix-fetchgit
ghc-options: -Wall
default-extensions:
- DataKinds
- DefaultSignatures
- DeriveAnyClass
- DeriveDataTypeable
- DeriveGeneric
- DerivingStrategies
- FlexibleContexts
- FlexibleInstances
- GADTs
- LambdaCase
- MultiParamTypeClasses
- OverloadedStrings
- PolyKinds
- RankNTypes
- RecordWildCards
- ScopedTypeVariables
- StandaloneDeriving
- TemplateHaskellQuotes
- TupleSections
- TypeApplications
- TypeFamilies
- TypeOperators
- ViewPatterns