-
Notifications
You must be signed in to change notification settings - Fork 9
/
coq-deriving.opam
37 lines (32 loc) · 1.01 KB
/
coq-deriving.opam
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
opam-version: "2.0"
name: "coq-deriving"
version: "dev"
maintainer: "Arthur Azevedo de Amorim <arthur.aa@gmail.com>"
homepage: "https://github.com/arthuraa/deriving"
bug-reports: "https://github.com/arthuraa/deriving/issues"
dev-repo: "git+https://github.com/arthuraa/deriving.git"
license: "MIT"
build: [ make "-j" "%{jobs}%" "test" {with-test} ]
install: [ make "install" ]
depends: [
"coq" { (>= "8.17" & < "8.20~") | (= "dev") }
"coq-mathcomp-ssreflect" {>= "2.0" | (= "dev")}
]
tags: [
"keyword:generic programming"
"category:Computer Science/Data Types and Data Structures"
"logpath:deriving"
]
authors: [
"Arthur Azevedo de Amorim"
]
synopsis: "Generic instances of MathComp classes"
description: """
Deriving provides generic instances of MathComp classes for
inductive data types. It includes native support for eqType,
choiceType, countType and finType instances, and it allows users to
define their own instances for other classes.
"""
url {
src: "git+https://github.com/arthuraa/deriving.git#master"
}