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"}
12 "dune" {>= "3.0"}
13 "alcotest" {with-test & >= "0.7.0"}
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/v2.0.0/patch-2.0.0.tbz"
29 checksum: [
30 "sha256=b0e54b53c9d79d4c557358ad38211b5e97b025d354f67c3c52491129ef98e558"
31 "sha512=f940382b68170af5d4d2d7928939397aad1825145db2600bd14290f81c29a0005456afc78c2e5a7cb952b2c6885db964a0568d6dff224b820a4d856bb3c3791f"
32 ]
33}
34x-commit-hash: "9e89a93ec40a0d4d68343cd4ff83c7e9725bd4ad"
35x-maintenance-intent: [ "(latest)" ]