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" & < "0.6.0"}
21 "ctypes" {>= "0.4.0"}
22]
23depopts: "base-unix"
24synopsis:
25 "Unix sys/resource.h types and bindings (getrlimit, setrlimit, and friends)"
26description: """
27unix-sys-resource provides access to the features exposed in
28sys/resource.h in a way that is not tied to the implementation on the
29host system.
30
31The Sys_resource module provides types and functions for describing and
32working with rlimit resources and limits.
33
34The Sys_resource_unix module provides bindings to functions that use the
35types in Sys_resource.
36
37Currently, getrlimit and setrlimit and their corresponding flags are
38bound."""
39url {
40 src:
41 "https://github.com/dsheets/ocaml-unix-sys-resource/archive/0.1.2.tar.gz"
42 checksum: [
43 "sha256=5f9f529146e362903d8cf9ac64af89e80b2a3d9689d0b5c0371b3d8757890372"
44 "md5=e9a89a897418be0e9956e67d5e7e501b"
45 ]
46}