-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathrocq-hierarchy-builder.opam
More file actions
32 lines (31 loc) · 1.25 KB
/
rocq-hierarchy-builder.opam
File metadata and controls
32 lines (31 loc) · 1.25 KB
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
opam-version: "2.0"
name: "coq-hierarchy-builder"
version: "dev"
maintainer: "Enrico Tassi <enrico.tassi@inria.fr>"
authors: [ "Cyril Cohen" "Kazuhiko Sakaguchi" "Enrico Tassi" ]
license: "MIT"
homepage: "https://github.com/math-comp/hierarchy-builder"
bug-reports: "https://github.com/math-comp/hierarchy-builder/issues"
dev-repo: "git+https://github.com/math-comp/hierarchy-builder"
build: [ [ make "build"]
[ make "test-suite" ] {with-test & rocq-core:installed}
]
install: [ make "install" ]
depends: [
"rocq-core" {(>= "9.0" & < "9.2~") | = "dev"} & "rocq-elpi" {>= "3" | = "dev"}
]
conflicts: [
"coq-hierarchy-builder" {< "1.9~"}
"coq-hierarchy-builder-shim"
]
depexts: [
[ "wdiff" ] {os-family = "debian" & with-test}
]
synopsis: "High level commands to declare and evolve a hierarchy based on packed classes"
description: """
Hierarchy Builder is a high level language to build hierarchies of algebraic structures and make these
hierarchies evolve without breaking user code. The key concepts are the ones of factory, builder
and abbreviation that let the hierarchy developer describe an actual interface for their library.
Behind that interface the developer can provide appropriate code to ensure retro compatibility.
"""
tags: [ "logpath:HB" ]