this repo has no description
1opam-version: "2.0" 2maintainer: "Frederic Bour <frederic.bour@lakaban.net>" 3authors: "Frederic Bour <frederic.bour@lakaban.net>" 4homepage: "https://github.com/let-def/stb_image" 5bug-reports: "https://github.com/let-def/stb_image" 6license: "CC0-1.0+" 7dev-repo: "git+https://github.com/let-def/stb_image.git" 8build: [ 9 [make] 10] 11install: [make "install"] 12depends: [ 13 "ocaml" {!= "4.01.0"} 14 "ocamlfind" {build} 15 "result" 16] 17synopsis: "OCaml bindings to stb_image, a public domain image loader" 18description: """ 19Stb_image is an OCaml binding to stb_image from Sean Barrett, [Nothings](http://nothings.org/): 20 21 stb_image.h: public domain C image loading library 22 23The OCaml binding is released under CC-0 license. It has no dependency beside working OCaml and C compilers (stb_image is self-contained).""" 24url { 25 src: "https://github.com/let-def/stb_image/archive/v0.5.tar.gz" 26 checksum: [ 27 "md5=b4382fe112cadd240972f07547138a2d" 28 "sha512=4d051e0c33d95527c01eab33d6fe07dce4c5f2d7f7e0b136fbfac1a8c092a645efc1d867fbd34403dd1c4797b73647caebf07ecb95f94d317dc8a15e23ddddb5" 29 ] 30}