this repo has no description
1opam-version: "2.0"
2synopsis: "Helper to build a module similar to Stdlib.Random"
3description: """
4This package provides helpers to build a module similar to the
5 Random module of the standard library, by providing only a minimum amount of
6 things (in the simplest case, only a `val bits : unit -> int` function)."""
7maintainer: ["Niols “Niols” Jeannerod <niols@niols.fr>"]
8authors: [
9 "Niols “Niols” Jeannerod <niols@niols.fr>"
10 "Martin Pépin <kerl@wkerl.me>"
11]
12license: "LGPL-3.0-or-later"
13homepage: "https://github.com/LesBoloss-es/xoshiro"
14doc: "https://lesboloss-es.github.io/xoshiro/"
15bug-reports: "https://github.com/LesBoloss-es/xoshiro/issues"
16depends: [
17 "dune" {>= "2.8"}
18 "odoc" {with-doc}
19]
20build: [
21 ["dune" "subst"] {dev}
22 [
23 "dune"
24 "build"
25 "-p"
26 name
27 "-j"
28 jobs
29 "@install"
30 "@runtest" {with-test}
31 "@doc" {with-doc}
32 ]
33]
34dev-repo: "git+https://github.com/LesBoloss-es/xoshiro.git"
35url {
36 src: "https://github.com/LesBoloss-es/xoshiro/archive/0.1.tar.gz"
37 checksum: [
38 "md5=189dfb19a24fea0fdfe9627e419eb55d"
39 "sha512=ee9ced16ea5ede0e567522e8d82e35f27924c9b922bcd342dc8becb3cf4f176b79ab77e30bf472ce61642e879552d309506b5652f411455023cb9aef5162d2ca"
40 ]
41}