this repo has no description
1opam-version: "2.0"
2synopsis: "A lightweight library for combinatory logic"
3description:
4 "Combic is a minimalistic OCaml library that provides a simple implementation of combinatory logic lambdas - with their associated bird names. It offers a simple and lightweight way to incorporate combinators into your projects."
5maintainer: ["zandacw"]
6authors: ["zandacw"]
7license: "MIT"
8tags: [
9 "topics"
10 "combinatory logic"
11 "functional programming"
12 "lambda calculus"
13 "ocaml"
14]
15homepage: "https://github.com/zandacw/combic"
16doc: "https://zandacw.github.io/combic/README.md"
17bug-reports: "https://github.com/zandacw/combic/issues"
18depends: [
19 "ocaml"
20 "dune" {>= "3.14"}
21 "odoc" {with-doc}
22]
23build: [
24 ["dune" "subst"] {dev}
25 [
26 "dune"
27 "build"
28 "-p"
29 name
30 "-j"
31 jobs
32 "@install"
33 "@runtest" {with-test}
34 "@doc" {with-doc}
35 ]
36]
37dev-repo: "git+https://github.com/zandacw/combic.git"
38url {
39 src:
40 "https://github.com/zandacw/combic/releases/download/1.0.0/combic-1.0.0.tbz"
41 checksum: [
42 "sha256=5db6d0e6876feb73726d3c220df3157b8531e41b616324be6530df62ccdb269e"
43 "sha512=1a008316d13c41e99eb82c063274c8341292ae64d36eb910faaf1229c8dcf7a070021712b1ebc49a4141bdbe9c546c10a24624f3aff0238447e7f37ed5c1970c"
44 ]
45}
46x-commit-hash: "fb76dd64c67d6697d32c52f9f5ca7dd504a8fc77"