this repo has no description
1opam-version: "2.0"
2synopsis: "A complete yet small extension for OCaml standard library"
3description: """\
4The purpose of this library is to add new functions to OCaml standard library
5modules, to modify some functions in order to get better performances or
6safety (tail-recursive) and also to provide new modules which should be useful
7for day to day programming.
8
9Current goal is to maintain compatibility, new software is encouraged to not use extlib since stdlib
10is now seeing many additions and improvements which make many parts of extlib obsolete.
11For tail-recursion safety consider using other libraries e.g. containers."""
12maintainer: "ygrek@autistici.org"
13authors: [
14 "Nicolas Cannasse"
15 "Brian Hurt"
16 "Yamagata Yoriyuki"
17 "Markus Mottl"
18 "Jesse Guardiani"
19 "John Skaller"
20 "Bardur Arantsson"
21 "Janne Hellsten"
22 "Richard W.M. Jones"
23 "ygrek"
24 "Gabriel Scherer"
25 "Pietro Abate"
26]
27license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
28homepage: "https://github.com/ygrek/ocaml-extlib"
29doc: "https://ygrek.org/p/extlib/doc/"
30bug-reports: "https://github.com/ygrek/ocaml-extlib/issues"
31depends: [
32 "dune" {>= "1.0"}
33 "ocaml" {>= "4.02" & < "5.3"}
34 "cppo" {build}
35]
36build: [
37 ["dune" "build" "-p" name "-j" jobs]
38 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
39]
40dev-repo: "git+https://github.com/ygrek/ocaml-extlib.git"
41url {
42 src:
43 "https://github.com/ygrek/ocaml-extlib/releases/download/1.7.9/extlib-1.7.9.tar.gz"
44 checksum: [
45 "md5=f7ca7f1c82e15a99603b88f730fd7b8a"
46 "sha512=2386ac69f037ea520835c0624d39ae9fbffe43a20b18e247de032232ed6f419d667b53d2314c6f56dc71d368bf0b6201a56c2f3f2a5bdfd933766c5a6cb98768"
47 ]
48}