diff options
author | Julien Lepiller <julien@lepiller.eu> | 2022-04-08 15:22:50 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-04-11 11:56:19 +0200 |
commit | a703b1d9c5607528515d91936e576c7c85365416 (patch) | |
tree | f896eae89c800190d5c3466a11ae664ba20395e5 /gnu | |
parent | 5caa91e2191ce2229f8cb2337a37dd5a5282c92c (diff) | |
download | guix-a703b1d9c5607528515d91936e576c7c85365416.tar guix-a703b1d9c5607528515d91936e576c7c85365416.tar.gz |
gnu: Add ocaml-ppx-module-timer.
* gnu/packages/ocaml.scm (ocaml-ppx-module-timer): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ocaml.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index c2924fc59d..a5f57fe36f 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -5929,6 +5929,31 @@ context such as function arguments.") (properties '()) (license license:asl2.0)))) +(define-public ocaml-ppx-module-timer + (package + (name "ocaml-ppx-module-timer") + (version "0.14.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/janestreet/ppx_module_timer") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "163q1rpblwv82fxwyf0p4j9zpsj0jzvkfmzb03r0l49gqhn89mp6")))) + (build-system dune-build-system) + (arguments + `(#:tests? #f)); no tests + (propagated-inputs + (list ocaml-base ocaml-ppx-base ocaml-stdio ocaml-time-now ocaml-ppxlib)) + (properties `((upstream-name . "ppx_module_timer"))) + (home-page "https://github.com/janestreet/ppx_module_timer") + (synopsis "Ppx rewriter that records top-level module startup times") + (description "Modules using @samp{ppx_module_timer} have instrumentation +to record their startup time.") + (license license:expat))) + (define-public ocaml-ppx-optional (package (name "ocaml-ppx-optional") |