diff options
author | Julien Lepiller <julien@lepiller.eu> | 2016-12-30 16:28:46 +0100 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2017-02-15 20:10:01 +0100 |
commit | 6bdf77a2a165743a126964190b59f92873e8664b (patch) | |
tree | 25e69cee2010238f5cc41c3ead1973a72123a5c8 /gnu/packages/ocaml.scm | |
parent | 6fb9e069b05e12ff75dd098e7dc65a8c7007176c (diff) | |
download | patches-6bdf77a2a165743a126964190b59f92873e8664b.tar patches-6bdf77a2a165743a126964190b59f92873e8664b.tar.gz |
gnu: Add ocaml-fieldslib.
* gnu/packages/ocaml.scm (ocaml-fieldslib): New variable.
Diffstat (limited to 'gnu/packages/ocaml.scm')
-rw-r--r-- | gnu/packages/ocaml.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 9a0bc91128..8e3deb7a12 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2025,3 +2025,21 @@ structured values at speeds sufficient to saturate a gigabit connection. The protocol is also heavily optimized for size, making it ideal for long-term storage of large amounts of data.") (license license:asl2.0))) + +(define-public ocaml-fieldslib + (package + (name "ocaml-fieldslib") + (version "113.33.03") + (source (janestreet-origin "fieldslib" version + "1rm3bn54bzk2hlq8f3w067ak8s772w4a8f78i3yh79vxfzq8ncvv")) + (native-inputs + `(("js-build-tools" ,ocaml-js-build-tools) + ("opam" ,opam))) + (build-system ocaml-build-system) + (arguments janestreet-arguments) + (home-page "https://github.com/janestreet/fieldslib/") + (synopsis "Syntax extension to record fields") + (description "Syntax extension to define first class values representing +record fields, to get and set record fields, iterate and fold over all fields +of a record and create new record values.") + (license license:asl2.0))) |