-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24846 from laelath/opam-publish-urn.20231124
Package urn.20231124
- Loading branch information
Showing
1 changed file
with
39 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,39 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
synopsis: "Urn data structure for fast pure functional random sampling" | ||
description: | ||
"An implementation of the urn data structure described in https://dl.acm.org/doi/pdf/10.1145/3122955.3122959." | ||
maintainer: ["[email protected]"] | ||
authors: ["Justin Frank"] | ||
license: "MIT" | ||
homepage: "https://github.com/laelath/ocaml-urn" | ||
doc: "https://laelath.github.io/ocaml-urn/urn/Urn/index.html" | ||
bug-reports: "https://github.com/laelath/ocaml-urn/issues" | ||
depends: [ | ||
"ocaml" {>= "4.12"} | ||
"dune" {>= "3.11"} | ||
"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/laelath/ocaml-urn.git" | ||
url { | ||
src: | ||
"https://github.com/laelath/ocaml-urn/archive/refs/tags/20231124.tar.gz" | ||
checksum: [ | ||
"md5=51102864138dbf2859a15c680a18e566" | ||
"sha512=64d80d5a772d930c20bf6e2eae4127c858e59cb192dba36b9022a64746bda594631f7c631a2fcdd53c077ed930f92990791783d4d60128a5ccf2be110444fa83" | ||
] | ||
} |