diff options
author | Julien Lepiller <julien@lepiller.eu> | 2016-12-30 19:32:14 +0100 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2017-03-14 22:09:48 +0100 |
commit | 250ac438e79076410964bbe9e091ae39dea1c4d0 (patch) | |
tree | 65d9f195c08cd3e2a86f53a5d56e0830efa816e8 /gnu/packages | |
parent | a43160ee6f12a8dd8540ef674472acabf4b192d9 (diff) | |
download | guix-250ac438e79076410964bbe9e091ae39dea1c4d0.tar guix-250ac438e79076410964bbe9e091ae39dea1c4d0.tar.gz |
gnu: Add ocaml-ppx-enumerate.
* gnu/packages/ocaml.scm (ocaml-ppx-enumerate): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/ocaml.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index c3ee884549..23590054e0 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2419,3 +2419,25 @@ variant types.") (synopsis "Assert-like extension nodes that raise useful errors on failure") (description "Assert-like extension nodes that raise useful errors on failure.") (license license:asl2.0))) + +(define-public ocaml-ppx-enumerate + (package + (name "ocaml-ppx-enumerate") + (version "113.33.03") + (source (janestreet-origin "ppx_enumerate" version + "15g7yfv9wg2h9r6k6q1zrhygmsl4xrfn25mrb0i4czjjivzmxjh4")) + (build-system ocaml-build-system) + (native-inputs + `(("js-build-tools" ,ocaml-js-build-tools) + ("opam" ,opam))) + (propagated-inputs + `(("ppx-tools" ,ocaml-ppx-tools) + ("ppx-type-conv" ,ocaml-ppx-type-conv) + ("ppx-core" ,ocaml-ppx-core))) + (arguments janestreet-arguments) + (home-page "https://github.com/janestreet/ppx_enumerate") + (synopsis "Generate a list containing all values of a finite type") + (description "Ppx_enumerate is a ppx rewriter which generates a definition +for the list of all values of a type (for a type which only has finitely +many values).") + (license license:asl2.0))) |