this repo has no description
1opam-version: "2.0"
2maintainer: "Hannes Mehnert <hannes@mehnert.org>"
3authors: ["Hannes Mehnert <hannes@mehnert.org>"]
4homepage: "https://github.com/hannesm/patch"
5doc: "https://hannesm.github.io/patch/"
6dev-repo: "git+https://github.com/hannesm/patch.git"
7bug-reports: "https://github.com/hannesm/patch/issues"
8license: "ISC"
9
10depends: [
11 ("ocaml" {>= "4.04.2" & < "5.0"} | "ocaml" {>= "5.0"} & "base-bytes")
12 ("dune" {>= "1.4.0"} | "dune" {< "1.4.0"} & "base-bytes")
13 "alcotest" {with-test}
14 "crowbar" {with-test}
15]
16build: [
17 ["dune" "subst"] {dev}
18 ["dune" "build" "-p" name "-j" jobs]
19 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
20]
21synopsis: "Patch library purely in OCaml"
22description: """
23This is a library which parses unified diff and git diff output, and can
24apply a patch in memory.
25"""
26url {
27 src:
28 "https://github.com/hannesm/patch/releases/download/v1.0.0/patch-v1.0.0.tbz"
29 checksum: [
30 "sha256=a1f32d4a3fc7c80a2d540dbf800657c5a4f1164ee32bd8c994f26db4f1768418"
31 "sha512=9c383bdd21f676702220c45b958a98d6a8f471d853dc859aaf5d3ddb5c8fba3d30f1d7eebeb488772c316fc2ce5ccc16781620064e8c06c93ec8bffe60687b09"
32 ]
33}