this repo has no description
1opam-version: "2.0" 2maintainer: "Gabriel Jaldon <gjaldon85@gmail.com>" 3authors: [ "Gabriel Jaldon" ] 4homepage: "https://github.com/gjaldon/simple_diff" 5bug-reports: "https://github.com/gjaldon/simple_diff/issues" 6license: "ISC" 7dev-repo: "git+https://github.com/gjaldon/simple_diff.git" 8doc: "https://gjaldon.github.io/simple-diff/" 9 10build: [ "ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" ] 11 12depends: [ 13 "ocaml" {>= "4.00.0"} 14 "topkg" {build} 15 "ocamlfind" {build} 16 "ocamlbuild" {build} 17 "re" {>= "1.7.1"} 18] 19synopsis: "Simple_diff is a pure OCaml diffing algorithm." 20description: """ 21This diffing algorithm is a port of https://github.com/paulgb/simplediff with 22some minor differences in the implementation.""" 23url { 24 src: "https://github.com/gjaldon/simple-diff/archive/v0.3.tar.gz" 25 checksum: [ 26 "sha256=f6d659f869aaaca2bfdbca0c07acced66b4ab5d19a0a1597754fb5c5d7fc8eb8" 27 "md5=4751d72fe03c4b3cc45ad6476bcbe558" 28 ] 29}