this repo has no description
1opam-version: "2.0" 2maintainer: "Antoine Luciani <aluciani@advanced-schema.com>" 3authors: "Advanced Schema" 4homepage: "http://github.com/advanced-schema/ocaml-basics" 5bug-reports: "http://github.com/advanced-schema/ocaml-basics/issues" 6license: "MIT" 7dev-repo: "git+https://github.com/advanced-schema/ocaml-basics.git" 8build: [ 9 ["oasis" "setup"] 10 ["./configure" "--prefix=%{prefix}%"] 11 [make] 12] 13install: [make "install"] 14remove: ["ocamlfind" "remove" "ocaml-basics"] 15depends: [ 16 "ocaml" {>= "4.04"} 17 "ocamlfind" {build} 18 "oasis" {>= "0.4"} 19 "result" {>= "1.2"} 20 "ppx_sexp_conv" {>= "v0.9"} 21 "sexplib" {>= "v0.9"} 22 "ppx_deriving" {>= "4.0"} 23] 24synopsis: "Implements common functionnal patterns / abstractions" 25flags: light-uninstall 26url { 27 src: 28 "https://github.com/advanced-schema/ocaml-basics/archive/v0.1.0.tar.gz" 29 checksum: [ 30 "sha256=4aef111a7241883de0f6d7f826ac9b1f1892782dfd1cdd90b3cfc0743c76959e" 31 "md5=01e2ecb3c650d8a3ecf5b7feb182aaf2" 32 ] 33}