Skip to content

Commit

Permalink
Package mutaml.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jmid committed Sep 26, 2024
1 parent e8adc67 commit 72bdfd0
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions packages/mutaml/mutaml.0.2/opam
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"
]
}

0 comments on commit 72bdfd0

Please sign in to comment.