me
/
guix
Archived
1
0
Fork 0

gnu: Add ocaml-ppx-bench.

* gnu/packages/ocaml.scm (ocaml-ppx-bench): New variable.
(ocaml4.07-ppx-bench): Inherit from it.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Julien Lepiller 2022-04-08 15:22:54 +02:00 committed by Ludovic Courtès
parent e5deab0a7a
commit 755122b3af
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 35 additions and 22 deletions

View File

@ -5744,9 +5744,35 @@ many values).")
"0spx9k1v7vjjb6sigbfs69yndgq76v114jhxvzjmffw7q989cyhr"))))
(properties `((upstream-name . "ppx_enumerate"))))))
(define-public ocaml4.07-ppx-bench
(define-public ocaml-ppx-bench
(package
(name "ocaml4.07-ppx-bench")
(name "ocaml-ppx-bench")
(version "0.14.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/janestreet/ppx_bench")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "12r7jgqgpb4i4cry3rgyl2nmxcscs5w7mmk06diz7i49r27p96im"))))
(build-system dune-build-system)
(arguments
;; No tests
`(#:tests? #f))
(propagated-inputs (list ocaml-ppx-inline-test ocaml-ppxlib))
(properties `((upstream-name . "ppx_bench")
(ocaml4.07-variant . ,(delay ocaml4.07-ppx-bench))))
(home-page "https://github.com/janestreet/ppx_bench")
(synopsis "Syntax extension for writing in-line benchmarks in ocaml code")
(description "Syntax extension for writing in-line benchmarks in ocaml code.")
(license license:expat)))
(define-public ocaml4.07-ppx-bench
(package-with-ocaml4.07
(package
(inherit ocaml-ppx-bench)
(version "0.11.0")
(source (origin
(method url-fetch)
@ -5756,23 +5782,10 @@ many values).")
(sha256
(base32
"0ys4pblbcjbk9dn073rqiwm7r6rc7fah03j7riklkwnb5n44andl"))))
(build-system dune-build-system)
(arguments
;; No tests
`(#:tests? #f
#:ocaml ,ocaml-4.07
#:findlib ,ocaml4.07-findlib
#:dune ,ocaml4.07-dune))
(propagated-inputs
`(("ocaml-ppx-inline-test" ,(package-with-ocaml4.07 ocaml-ppx-inline-test))
("ocaml-migrate-parsetree"
,(package-with-ocaml4.07 ocaml-migrate-parsetree))
("ocaml-ppxlib" ,(package-with-ocaml4.07 ocaml-ppxlib))))
(properties `((upstream-name . "ppx_bench")))
(home-page "https://github.com/janestreet/ppx_bench")
(synopsis "Syntax extension for writing in-line benchmarks in ocaml code")
(description "Syntax extension for writing in-line benchmarks in ocaml code.")
(license license:asl2.0)))
(list ocaml-ppx-inline-test ocaml-migrate-parsetree ocaml-ppxlib))
(properties '())
(license license:asl2.0))))
(define-public ocaml-ppx-here
(package