me
/
guix
Archived
1
0
Fork 0

gnu: Add ocaml-bechamel.

* gnu/packages/ocaml.scm (ocaml-bechamel): New variable.

Signed-off-by: Julien Lepiller <julien@lepiller.eu>
pukkamustard 2022-12-16 13:25:17 +00:00 committed by Julien Lepiller
parent 8160d05e83
commit f883cb9ecd
No known key found for this signature in database
GPG Key ID: 53D457B2D636EE82
1 changed files with 24 additions and 0 deletions

View File

@ -3610,6 +3610,30 @@ your functions and to easily compare the results. A statistical test
is used to determine whether the results truly differ.") is used to determine whether the results truly differ.")
(license license:lgpl3+))) (license license:lgpl3+)))
(define-public ocaml-bechamel
(package
(name "ocaml-bechamel")
(version "0.3.0")
(home-page "https://github.com/mirage/bechamel")
(source
(origin
(method git-fetch)
(uri (git-reference
(url home-page)
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1x7sf45iy5dzx7kknbkkvpna42rcwpj5p55y0nqsg2fb4srj0b1q"))))
(build-system dune-build-system)
(arguments `(#:package "bechamel"))
(propagated-inputs (list ocaml-fmt ocaml-stdlib-shims))
(synopsis "Yet Another Benchmark in OCaml")
(description
"BEnchmark for a CHAMEL/camel/caml which is agnostic to the system. It's a
micro-benchmark tool for OCaml which lets the user to re-analyzes and prints
samples.")
(license license:expat)))
(define-public ocaml-batteries (define-public ocaml-batteries
(package (package
(name "ocaml-batteries") (name "ocaml-batteries")