-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
synopsis: "A mutation tester for OCaml" | ||
description: """ | ||
Mutaml is a mutation testing tool for OCaml. | ||
It uses a ppxlib-based preprocessor to make a series of small | ||
breaking changes to a program's source code and then runs | ||
the program's testsuite for each of them to catch uncaught | ||
misbehaviour. | ||
""" | ||
maintainer: ["Jan Midtgaard <[email protected]>"] | ||
authors: ["Jan Midtgaard <[email protected]>"] | ||
license: "BSD-2-Clause" | ||
tags: ["test" "mutation testing"] | ||
homepage: "https://github.com/jmid/mutaml" | ||
doc: "https://github.com/jmid/mutaml" | ||
bug-reports: "https://github.com/jmid/mutaml/issues" | ||
depends: [ | ||
"dune" {>= "3.0"} | ||
"ocaml" {>= "4.12.0"} | ||
"ppxlib" {>= "0.28.0"} | ||
"ppx_yojson_conv" {>= "0.14.0"} | ||
"stdlib-random" | ||
"conf-timeout" | ||
"conf-which" | ||
"conf-diffutils" | ||
"ocaml-compiler-libs" {>= "v0.12.0"} | ||
"ppx_derivers" {>= "1.2.1"} | ||
"yojson" {>= "2.0.0"} | ||
"ounit2" {with-test} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/jmid/mutaml.git" | ||
url { | ||
src: "https://github.com/jmid/mutaml/archive/refs/tags/0.2.tar.gz" | ||
checksum: [ | ||
"md5=61addf5724238b477033e654412651eb" | ||
"sha512=bd9efe0bd5a1098f03adc199f688b265362223bc5509bc1d3255696ba0e5e22f08b66434367e0a15f00e02dd074fd83dc2da094867a80c91ff397ffc07734778" | ||
] | ||
} |