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"
6dev-repo: "git+https://github.com/dsheets/ocaml-unix-sys-resource.git"
7tags: [ "unix" "posix" "sys/resource.h" "getrlimit" "setrlimit" "rlimit" ]
8license: "ISC"
9build: [
10 [make "build"]
11 [make "test"] {with-test}
12]
13install: [
14 [make "install"]
15]
16remove: [make "uninstall"]
17depends: [
18 "ocaml"
19 "ocamlfind" {build}
20 "ocamlbuild" {build}
21 "alcotest" {with-test}
22 "unix-errno" {>= "0.3.0" & < "0.4.0"}
23 "ctypes"
24]
25depopts: [
26 "base-unix"
27]
28conflicts: [
29 "ctypes" {< "0.4.0"}
30 "ctypes" {>= "0.6.0"}
31]
32synopsis:
33 "Unix sys/resource.h types and bindings (getrlimit, setrlimit, and friends)"
34description: """
35unix-sys-resource provides access to the features exposed in
36sys/resource.h in a way that is not tied to the implementation on the
37host system.
38
39The Sys_resource module provides types and functions for describing and
40working with rlimit resources and limits.
41
42The Sys_resource_unix module provides bindings to functions that use the
43types in Sys_resource.
44
45Currently, getrlimit and setrlimit and their corresponding flags are
46bound."""
47url {
48 src:
49 "https://github.com/dsheets/ocaml-unix-sys-resource/archive/0.1.0.tar.gz"
50 checksum: [
51 "sha256=6b1878caf942640bd0e0e27520f81f907cce923b2342342e831dd9a655f6c1aa"
52 "md5=7555aa595876f249cadabcb71c12ef60"
53 ]
54}