Skip to content

Commit 71c732c

Browse files
committed
Package bwd.2.1.0
1 parent 56c5200 commit 71c732c

File tree

1 file changed

+32
-0
lines changed
  • packages/bwd/bwd.2.1.0

1 file changed

+32
-0
lines changed

packages/bwd/bwd.2.1.0/opam

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
opam-version: "2.0"
2+
synopsis: "Backward lists"
3+
description: """
4+
This OCaml package defines backward lists that are isomorphic to lists.
5+
They are useful when one wishes to give a different type to the lists that are semantically in reverse.
6+
In our experience, it is easy to miss List.rev or misuse List.rev_append when both semantically forward and backward lists are present.
7+
With backward lists having a different type, it is impossible to make those mistakes.
8+
"""
9+
maintainer: "favonia <[email protected]>"
10+
authors: "The RedPRL Development Team"
11+
license: "Apache-2.0"
12+
homepage: "https://github.com/RedPRL/ocaml-bwd"
13+
bug-reports: "https://github.com/RedPRL/ocaml-bwd/issues"
14+
dev-repo: "git+https://github.com/RedPRL/ocaml-bwd.git"
15+
depends: [
16+
"dune" {>= "2.0"}
17+
"ocaml" {>= "4.12"}
18+
"qcheck-core" {>= "0.18" & with-test}
19+
"odoc" {>= "2.0" & with-doc}
20+
]
21+
build: [
22+
["dune" "build" "-p" name "-j" jobs]
23+
["dune" "build" "-p" name "-j" jobs "@runtest"] {with-test}
24+
["dune" "build" "-p" name "-j" jobs "@doc"] {with-doc}
25+
]
26+
url {
27+
src: "https://github.com/RedPRL/ocaml-bwd/archive/2.1.0.tar.gz"
28+
checksum: [
29+
"md5=be731bd8c2d78cf1e8c41c2155a16b2e"
30+
"sha512=62e7eaac21eece4c415b96df4c35bfbe80d3e4f11b55724af79cda70d37a2bcc3edfd8d55cffb3a4cfcc58ca5d7e6680d983e2d949cb6125140d44a4297b5183"
31+
]
32+
}

0 commit comments

Comments
 (0)