diff options
author | Julien Lepiller <julien@lepiller.eu> | 2023-12-25 11:07:44 +0100 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2023-12-30 22:11:19 +0100 |
commit | 711f2b10dccc0a8b95781753014a703e1c31b6b6 (patch) | |
tree | 91fff6bbe82dec201d8d9f88a59e86f326245bf7 /gnu/packages/ocaml.scm | |
parent | 9c52f8b8678b4d17655b8ca29f2748203f498d6f (diff) |
gnu: Remove ocaml4.07-ppx-bench.
* gnu/packages/ocaml.scm (ocaml4.07-ppx-bench): Remove variable.
(ocaml-ppx-bench)[properties]: Remove variant.
Change-Id: I407067f56a2e8a73ab9c311dafb2fd6dd5b583f8
Diffstat (limited to 'gnu/packages/ocaml.scm')
-rw-r--r-- | gnu/packages/ocaml.scm | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 8f811a28fc..83d1cb8777 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -6943,31 +6943,12 @@ many values).") ;; 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)))) + (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: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) - (uri (string-append "https://ocaml.janestreet.com/ocaml-core/v" - (version-major+minor version) - "/files/ppx_bench-v" version ".tar.gz")) - (sha256 - (base32 - "0ys4pblbcjbk9dn073rqiwm7r6rc7fah03j7riklkwnb5n44andl")))) - (propagated-inputs - (list ocaml-ppx-inline-test ocaml-migrate-parsetree ocaml-ppxlib)) - (properties '()) - (license license:asl2.0)))) - (define-public ocaml-ppx-here (package (name "ocaml-ppx-here") |