this repo has no description
1opam-version: "2.0"
2synopsis: "Backward lists"
3description: """
4This OCaml package defines backward lists that are isomorphic to lists.
5They are useful when one wishes to give a different type to the lists that are semantically in reverse.
6In our experience, it is easy to miss List.rev or misuse List.rev_append when both semantically forward and backward lists are present.
7With backward lists having a different type, it is impossible to make these mistakes.
8"""
9maintainer: "favonia <favonia@gmail.com>"
10authors: "The RedPRL Development Team"
11license: "Apache-2.0"
12homepage: "https://github.com/RedPRL/ocaml-bwd"
13bug-reports: "https://github.com/RedPRL/ocaml-bwd/issues"
14dev-repo: "git+https://github.com/RedPRL/ocaml-bwd.git"
15depends: [
16 "dune" {>= "2.0"}
17 "ocaml" {>= "4.08"}
18 "qcheck-core" {>= "0.18" & with-test}
19 "odoc" {with-doc}
20]
21build: [
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]
26url {
27 src: "https://github.com/RedPRL/ocaml-bwd/archive/1.2.0.tar.gz"
28 checksum: [
29 "md5=8f22a165c41d650ab734063441c83d22"
30 "sha512=525342b74934494a8c1b8e8208ae9125c218abd447373b47e876c281e7c947da80003e81a28e563c55714c4742bce9c8ac36e3c6747c317fc7714cedaa883e60"
31 ]
32}