An overlay for monopampam
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Sync opam files from monorepo (updated 1 packages)

+47
+47
packages/crowbar/crowbar.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Write tests, let a fuzzer find failing cases" 3 + description: """ 4 + Crowbar is a library for testing code, combining QuickCheck-style 5 + property-based testing and the magical bug-finding powers of 6 + [afl-fuzz](http://lcamtuf.coredump.cx/afl/). 7 + """ 8 + maintainer: ["Stephen Dolan <stephen.dolan@cl.cam.ac.uk>"] 9 + authors: ["Stephen Dolan <stephen.dolan@cl.cam.ac.uk>"] 10 + license: "MIT" 11 + homepage: "https://github.com/stedolan/crowbar" 12 + bug-reports: "https://github.com/stedolan/crowbar/issues" 13 + depends: [ 14 + "dune" {>= "2.9"} 15 + "ocaml" {>= "4.08"} 16 + "alcotest" 17 + "cmdliner" {>= "1.1.0"} 18 + "afl-persistent" {>= "1.1"} 19 + "calendar" {>= "2.00" & with-test} 20 + "fpath" {with-test} 21 + "pprint" {with-test} 22 + "uucp" {with-test} 23 + "uunf" {with-test} 24 + "uutf" {with-test} 25 + "odoc" {with-doc} 26 + ] 27 + build: [ 28 + ["dune" "subst"] {dev} 29 + [ 30 + "dune" 31 + "build" 32 + "-p" 33 + name 34 + "-j" 35 + jobs 36 + "--promote-install-files=false" 37 + "@install" 38 + "@runtest" {with-test} 39 + "@doc" {with-doc} 40 + ] 41 + ["dune" "install" "-p" name "--create-install-files" name] 42 + ] 43 + 44 + dev-repo: "git@git.recoil.org:gazagnaire.org/crowbar" 45 + url { 46 + src: "git@git.recoil.org:gazagnaire.org/crowbar#main" 47 + }