this repo has no description
1opam-version: "2.0"
2maintainer: "sheets@alum.mit.edu"
3authors: "David Sheets"
4homepage: "https://github.com/dsheets/ocaml-unix-sys-resource"
5bug-reports: "https://github.com/dsheets/ocaml-unix-sys-resource/issues"
6license: "ISC"
7tags: ["unix" "posix" "sys/resource.h" "getrlimit" "setrlimit" "rlimit"]
8dev-repo: "git+https://github.com/dsheets/ocaml-unix-sys-resource.git"
9build: [
10 [make "build"]
11 [make "test"] {with-test}
12]
13install: [make "install"]
14remove: [make "uninstall"]
15depends: [
16 "ocaml"
17 "ocamlfind" {build}
18 "ocamlbuild" {build}
19 "alcotest" {with-test}
20 "unix-errno" {>= "0.4.0"}
21 "ctypes"
22]
23depopts: "base-unix"
24conflicts: [
25 "ctypes" {< "0.4.0"}
26 "ctypes" {>= "0.6.0"}
27]
28synopsis:
29 "Unix sys/resource.h types and bindings (getrlimit, setrlimit, and friends)"
30description: """
31unix-sys-resource provides access to the features exposed in
32sys/resource.h in a way that is not tied to the implementation on the
33host system.
34
35The Sys_resource module provides types and functions for describing and
36working with rlimit resources and limits.
37
38The Sys_resource_unix module provides bindings to functions that use the
39types in Sys_resource.
40
41Currently, getrlimit and setrlimit and their corresponding flags are
42bound."""
43url {
44 src:
45 "https://github.com/dsheets/ocaml-unix-sys-resource/archive/0.1.1.tar.gz"
46 checksum: [
47 "sha256=95173cbb70a748ebe62da62e9b928107f087b70707269c22ecf87764609f3062"
48 "md5=b2683c78c2b86b5c6136362f01f93f49"
49 ]
50}