this repo has no description
1opam-version: "2.0" 2maintainer: "anil@recoil.org" 3authors: ["Anil Madhavapeddy" "Dave Scott" "Thomas Gazagnaire"] 4license: "ISC" 5tags: "org:mirage" 6homepage: "https://github.com/mirage/io-page" 7bug-reports: "https://github.com/mirage/io-page/issues" 8depends: [ 9 "ocaml" {>= "4.02.3"} 10 "dune" 11 "io-page" {=version} 12 "cstruct" {>= "2.0.0"} 13 "ounit" {with-test} 14] 15build: [ 16 ["dune" "subst"] {dev} 17 ["dune" "build" "-p" name "-j" jobs] 18 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 19] 20dev-repo: "git+https://github.com/mirage/io-page.git" 21synopsis: "Support for efficient handling of I/O memory pages on Unix" 22description: """ 23IO pages are page-aligned, and wrapped in the `Cstruct` library to avoid 24copying the data contained within the page. 25""" 26url { 27 src: 28 "https://github.com/mirage/io-page/releases/download/v2.3.0/io-page-v2.3.0.tbz" 29 checksum: [ 30 "sha256=9605a8a03e53bc12682212c371bc477f2a44ed829725ae38cc3005e2f83da2c3" 31 "sha512=ce1775bff151d62bb85405a13fe75f912c11b09cbc0a6dd81dd27b3f4c767f0b9c4d3e7383d494eb5c130311482ea69877c45b71b91153177562ffc47de4da2f" 32 ] 33} 34available: opam-version >= "2.2.0" 35flags: deprecated 36x-maintenance-intent: ["(none)"]