Skip to content

Commit 60059b9

Browse files
authored
Merge pull request ocaml#21044 from favonia/opam-publish-bwd.1.0.0
Package bwd.1.0.0
2 parents ea52a02 + da795bb commit 60059b9

File tree

1 file changed

+31
-0
lines changed
  • packages/bwd/bwd.1.0.0

1 file changed

+31
-0
lines changed

packages/bwd/bwd.1.0.0/opam

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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 these 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.08.0"}
18+
"odoc" {with-doc}
19+
]
20+
build: [
21+
["dune" "build" "-p" name "-j" jobs]
22+
["dune" "build" "-p" name "-j" jobs "@runtest"] {with-test}
23+
["dune" "build" "-p" name "-j" jobs "@doc"] {with-doc}
24+
]
25+
url {
26+
src: "https://github.com/RedPRL/ocaml-bwd/archive/1.0.0.tar.gz"
27+
checksum: [
28+
"md5=e06992507455ffb10a1c379322d7fb6e"
29+
"sha512=85066a9866dc90a0d138cc4d0688476a3ca96ce7454dc953fdadee51cb061201d0dc07db0b1c2ff2335f45dbfaaa9cbe53fc7724221f15d58604fd7fa1bbd22d"
30+
]
31+
}

0 commit comments

Comments
 (0)