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"} 34 "cppo" {build & >= "1.0.1"} 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.8.0/extlib-1.8.0.tar.gz" 44 checksum: [ 45 "md5=43fb3bf2989671af1769147b1171d080" 46 "sha512=dedd2bb4a63f2df9e451dbe6aede18d873489a8675f48ded09131f2af4d00dbeaecc8750039b2e4facb9f5f9b1b01c6b7accd392bf8ac5a3f2c801562ce5c4ee" 47 ] 48}