-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make coq-htt package depend on coq-htt-core (#29)
- Loading branch information
Showing
3 changed files
with
37 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
# This file was generated from `meta.yml`, please do not edit manually. | ||
|
||
opam-version: "2.0" | ||
maintainer: "[email protected]" | ||
version: "dev" | ||
|
@@ -30,14 +28,15 @@ variables). The connection reconciles dependent types with effects of state and | |
establishes Separation logic as a type theory for such effects. In implementation terms, it means | ||
that HTT implements Separation logic as a shallow embedding in Coq.""" | ||
|
||
build: [make "-j%{jobs}%"] | ||
install: [make "install"] | ||
build: ["dune" "build" "-p" name "-j" jobs] | ||
depends: [ | ||
"dune" {>= "3.6"} | ||
"coq" { (>= "8.19" & < "8.21~") | (= "dev") } | ||
"coq-mathcomp-ssreflect" { (>= "2.2.0" & < "2.3~") | (= "dev") } | ||
"coq-mathcomp-algebra" | ||
"coq-mathcomp-fingroup" | ||
"coq-fcsl-pcm" { (>= "2.0.0" & < "2.1~") | (= "dev") } | ||
"coq-htt-core" {= version} | ||
] | ||
|
||
tags: [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
(coq.theory | ||
(name htt) | ||
(package coq-htt) | ||
(synopsis "Hoare Type Theory with examples") | ||
(flags :standard | ||
-w -notation-overridden | ||
-w -local-declaration | ||
-w -redundant-canonical-projection | ||
-w -projection-no-head-constant)) |