this repo has no description
1opam-version: "2.0" 2maintainer: "Spiros Eliopoulos <spiros@inhabitedtype.com>" 3authors: [ "Spiros Eliopoulos <spiros@inhabitedtype.com>" ] 4license: "BSD-3-Clause" 5homepage: "https://github.com/inhabitedtype/ocaml-session" 6dev-repo: "git+https://github.com/inhabitedtype/ocaml-session.git" 7bug-reports: "https://github.com/inhabitedtype/ocaml-session/issues" 8build: [ 9 [ 10 "ocaml" 11 "setup.ml" 12 "-configure" 13 "--prefix" 14 prefix 15 "--%{webmachine:enable}%-webmachine" 16 "--%{postgresql:enable}%-postgresql" 17 "--%{lwt:enable}%-lwt" 18 "--%{cohttp:enable}%-cohttp" 19 "--%{async:enable}%-async" 20 ] 21 ["ocaml" "setup.ml" "-build"] 22 ["ocaml" "setup.ml" "-doc"] {with-doc} 23] 24install: ["ocaml" "setup.ml" "-install"] 25remove: [ 26 ["ocamlfind" "remove" "session"] 27] 28depends: [ 29 "ocaml" 30 "nocrypto" 31 "ocamlfind" {build} 32 "ocamlbuild" {build} 33 "result" 34] 35depopts: [ 36 "async" 37 "base-threads" 38 "cohttp" 39 "lwt" 40 "postgresql" 41 "webmachine" 42] 43conflicts: [ 44 "lwt" {>= "4.0.0"} 45 "cohttp" {>= "0.99.0"} 46] 47synopsis: "A session manager for your everyday needs" 48description: """ 49ocaml-session is an session manager that handles cookie headers and 50backend storage for HTTP servers. The library supports CoHTTP and 51Webmachine; Async and Lwt; and pluggable backing stores based on a 52functor interface.""" 53flags: light-uninstall 54url { 55 src: "https://github.com/inhabitedtype/ocaml-session/archive/0.1.0.tar.gz" 56 checksum: [ 57 "sha256=65b52476530d936cbf68a8512bb19de49a9e0c735f6019547169758407ca4077" 58 "md5=835c434ee5aeb590da735cde310e3e05" 59 ] 60}