[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#49150] [PATCH 7/9] gnu: Add ocaml-fix.
From: |
Xinglu Chen |
Subject: |
[bug#49150] [PATCH 7/9] gnu: Add ocaml-fix. |
Date: |
Mon, 21 Jun 2021 12:02:01 +0200 |
* gnu/packages/ocaml.scm (ocaml-fix): New variable.
---
gnu/packages/ocaml.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index c2e1039146..94e5f23ec0 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -7061,6 +7061,30 @@ structure and it can process text without a complete
in-memory
representation.")
(license license:isc)))
+(define-public ocaml-fix
+ (package
+ (name "ocaml-fix")
+ (version "20201120")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.inria.fr/fpottier/fix")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1j40mg1gy03c0djzx3nzmpvnl984s14n04zwcmp2xnlidq48kvs4"))))
+ (build-system dune-build-system)
+ (arguments
+ ;; No tests.
+ '(#:tests? #f))
+ (home-page "https://gitlab.inria.fr/fpottier/fix")
+ (synopsis "Facilities for memoization and fixed points")
+ (description "This package provides helpers with various constructions
+that involve memoization and recursion.")
+ (license license:lgpl2.0)))
+
(define-public ocaml-bigstringaf
(package
(name "ocaml-bigstringaf")
--
2.32.0
- [bug#49150] [PATCH 0/9] Add ocamlformat and dependencies, Xinglu Chen, 2021/06/21
- [bug#49150] [PATCH 1/9] gnu: ocaml-bisect-ppx: Update to 2.6.1., Xinglu Chen, 2021/06/21
- [bug#49150] [PATCH 3/9] gnu: Add ocaml-menhir-sdk., Xinglu Chen, 2021/06/21
- [bug#49150] [PATCH 2/9] gnu: Add ocaml-menhir-lib., Xinglu Chen, 2021/06/21
- [bug#49150] [PATCH 7/9] gnu: Add ocaml-fix.,
Xinglu Chen <=
- [bug#49150] [PATCH 9/9] gnu: Add ocamlformat., Xinglu Chen, 2021/06/21
- [bug#49150] [PATCH 4/9] gnu: Add ocaml-uucd., Xinglu Chen, 2021/06/21
- [bug#49150] [PATCH 5/9] gnu: Add ocaml-uucp., Xinglu Chen, 2021/06/21
- [bug#49150] [PATCH 6/9] gnu: Add ocaml-uuseg., Xinglu Chen, 2021/06/21
- [bug#49150] [PATCH 8/9] gnu: Add ocaml-dune-build-info., Xinglu Chen, 2021/06/21