this repo has no description
1opam-version: "2.0" 2maintainer: ["Mindy Preston <mindy.preston@docker.com>"] 3authors: ["Jon Ludlam" "Magnus Skjegstad" "Mindy Preston"] 4homepage: "https://github.com/mirage/parse-argv" 5bug-reports: "https://github.com/mirage/parse-argv/issues" 6dev-repo: "git+https://github.com/mirage/parse-argv.git" 7tags: [ "org:mirage"] 8doc: "https://docs.mirage.io" 9 10build: [ 11 ["ocaml" "pkg/pkg.ml" "build"] 12 ["ocaml" "pkg/pkg.ml" "build" "--tests" "true"] {with-test} 13 ["ocaml" "pkg/pkg.ml" "test"] {with-test} 14] 15depends: [ 16 "ocaml" {>= "4.02.3"} 17 "ocamlbuild" {build} 18 "ocamlfind" {build} 19 "topkg" {build} 20 "ounit" {with-test} 21 "astring" 22 "result" 23] 24synopsis: "process strings into sets of command-line arguments" 25description: "parse-argv is a small implementation of a simple argv parser." 26url { 27 src: "https://github.com/mirage/parse-argv/archive/v0.0.2.tar.gz" 28 checksum: [ 29 "sha256=ae899fb9d943b8f67778c2ef7c9161a682c8586c55accb3a387c30d463fed7e9" 30 "md5=8caa31daa46de44d165712b7baea6e1c" 31 ] 32} 33flags: deprecated 34post-messages: [ "parse-argv is deprecated, and has been folded into mirage-bootvar" ]