[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#47768] [PATCH v2 18/43] gnu: Add ocaml-syntax-shims.
From: |
pukkamustard |
Subject: |
[bug#47768] [PATCH v2 18/43] gnu: Add ocaml-syntax-shims. |
Date: |
Mon, 10 May 2021 05:16:03 +0000 |
* gnu/packages/ocaml.scm (ocaml-syntax-shims): New variable.
---
gnu/packages/ocaml.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 54a755212e..9289ec88b2 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -6615,3 +6615,28 @@ exposed the intrinsics properly, the compiler doesn't
have any fast blits
between Bigstrings and other string-like types. @code{bigstringaf} provides
these missing pieces.")
(license license:bsd-3)))
+
+(define-public ocaml-syntax-shims
+ (package
+ (name "ocaml-syntax-shims")
+ (version "1.0.0")
+ (home-page "https://github.com/ocaml-ppx/ocaml-syntax-shims")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url home-page)
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0l1i8z95qgb0lxlrv3yb5nkp391hqsiyi4r91p12k3xmggqixagf"))))
+ (build-system dune-build-system)
+ (properties
+ `((upstream-name . "ocaml-syntax-shims")))
+ (synopsis
+ "Backport new syntax to older OCaml versions")
+ (description
+ "This packages backports new features of the language to older
+compilers, such as let+.")
+ (license license:expat)))
--
2.31.1
- [bug#47768] [PATCH v2 34/43] gnu: Add ocaml-time-now., (continued)
- [bug#47768] [PATCH v2 34/43] gnu: Add ocaml-time-now., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 25/43] gnu: Add ocaml-ppx-enumerate., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 36/43] gnu: Add ocaml-angstrom., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 35/43] gnu: Add ocaml-ppx-inline-test., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 27/43] gnu: Add ocaml-ppx-base., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 38/43] gnu: Add ocaml-graphics., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 28/43] gnu: Add ocaml-fieldslib., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 29/43] gnu: Add ocaml-ppx-fields-conv., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 41/43] gnu: Add ocaml-ppx-expect., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 42/43] gnu: ocaml-num: Update to 1.4., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 18/43] gnu: Add ocaml-syntax-shims.,
pukkamustard <=
- [bug#47768] [PATCH v2 31/43] gnu: Add ocaml-ppx-optional., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 37/43] gnu: Add ocaml-uri., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 24/43] gnu: Add ocaml-ppx-hash., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 16/43] gnu: Add ocaml-bigstringaf., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 26/43] gnu: Add ocaml-ppx-js-style., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 40/43] gnu: Add ocaml-ppx-variants-conv., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 39/43] gnu: Add ocaml-variantslib., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 43/43] gnu: Add ocaml-js-of-ocaml., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 00/43] Assorted OCaml patches (V2), Xinglu Chen, 2021/05/25