this repo has no description
1opam-version: "2.0"
2synopsis: "Interfaces and module combinators for algebraic structures"
3description: """
4
5An experimental library for programming with algebraic and category-theoretic
6structures in OCaml.
7
8Currently, implemented structures include applicative, foldable, functor, monoid,
9and semigroup.
10"""
11maintainer: ["shon.feder@gmail.com"]
12authors: ["Shon Feder"]
13license: "MIT"
14homepage: "https://github.com/shonfeder/alg_structs"
15doc: "https://shonfeder.github.io/alg_structs/"
16bug-reports: "https://github.com/shonfeder/alg_structs/issues"
17depends: [
18 "dune" {>= "1.11.3"}
19 "ocaml" {>= "4.08.0"}
20 "ppx_deriving" {>= "4.4"}
21]
22dev-repo: "git+https://github.com/shonfeder/alg_structs.git"
23# We need to avoid "@runtest" for alg_structs, since it depends
24# On the alg_structs_qcheck package
25build: [
26 ["dune" "subst"] {dev}
27 [
28 "dune"
29 "build"
30 "-p"
31 name
32 "-j"
33 jobs
34 "@install"
35 "@doc" {with-doc}
36 ]
37]
38url {
39 src:
40 "https://github.com/shonfeder/alg_structs/releases/download/0.1.3/alg_structs_qcheck-0.1.3.tbz"
41 checksum: [
42 "sha256=6b0113f2500e70fd00862879ba36d64e9e0f1815ad6ffe2325b1e5e8ed561c08"
43 "sha512=80e7a34fb04791221df44d876482a562a48b8e84665258be556fefc1cb77c380425bff7b1f52939bffbf69d78d223ff428e936f7a32dccb7901c6f06783cd764"
44 ]
45}