[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#45498] [PATCH v2 04/13] gnu: Add ocaml-parsexp.
From: |
pukkamustard |
Subject: |
[bug#45498] [PATCH v2 04/13] gnu: Add ocaml-parsexp. |
Date: |
Mon, 28 Dec 2020 19:14:05 +0100 |
* gnu/packages/ocaml.scm (ocaml-parsexp): New variable.
(ocaml4.07-parsexp): Inherit from ocaml-parsexp.
---
gnu/packages/ocaml.scm | 38 ++++++++++++++++++++------------------
1 file changed, 20 insertions(+), 18 deletions(-)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 6a232be8a7..31f524331f 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -4065,28 +4065,19 @@ that was developed by Jane Street, the largest
industrial user of OCaml.")
(arguments `(#:tests? #f)) ; no tests
(properties '()))))
-(define-public ocaml4.07-parsexp
+(define-public ocaml-parsexp
(package
- (name "ocaml4.07-parsexp")
- (version "0.11.0")
+ (name "ocaml-parsexp")
+ (version "0.14.0")
(home-page "https://github.com/janestreet/parsexp")
(source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url (string-append home-page ".git"))
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1nyq23s5igd8cf3n4qxprjvhbmb6ighb3fy5mw7hxl0mdgsw5fvz"))))
+ (janestreet-origin "parsexp" version
+
"158znj19dvfdcwsgzs3rdhxpj1g4aw0d4nkfr8c05bahf0lnshlb"))
(build-system dune-build-system)
- (arguments
- `(#:ocaml ,ocaml-4.07
- #:findlib ,ocaml4.07-findlib
- #:dune ,ocaml4.07-dune))
(inputs
- `(("ocaml-sexplib0" ,(package-with-ocaml4.07 ocaml-sexplib0))))
+ `(("ocaml-sexplib0" ,ocaml-sexplib0)
+ ("ocaml-base" ,ocaml-base)))
+ (properties `((ocaml4.07-variant . ,(delay ocaml4.07-parsexp))))
(synopsis "S-expression parsing library")
(description
"This library provides generic parsers for parsing S-expressions from
@@ -4115,6 +4106,17 @@ s-expressions from files or other external sources, you
should use
parsexp_io.")
(license license:expat)))
+(define-public ocaml4.07-parsexp
+ (package-with-ocaml4.07
+ (package
+ (inherit ocaml-parsexp)
+ (name "ocaml-parsexp")
+ (version "0.11.0")
+ (source
+ (janestreet-origin "parsexp" version
+
"11a30zkfgbi6pb4whq22k1zc8ghdp9bwxl5s5cdlmx1z8s4yxsf0"))
+ (properties '()))))
+
(define-public ocaml4.07-sexplib
(package
(name "ocaml4.07-sexplib")
@@ -4137,7 +4139,7 @@ parsexp_io.")
#:dune ,ocaml4.07-dune))
(propagated-inputs
`(("ocaml-num" ,(package-with-ocaml4.07 ocaml-num))
- ("ocaml-parsexp" ,ocaml4.07-parsexp)
+ ("ocaml-parsexp" ,(package-with-ocaml4.07 ocaml-parsexp))
("ocaml-sexplib0" ,(package-with-ocaml4.07 ocaml-sexplib0))))
(synopsis
"Library for serializing OCaml values to and from S-expressions")
--
2.29.2
- [bug#45498] [PATCH 09/12] gnu: Add ocaml-odoc., (continued)
- [bug#45498] [PATCH 09/12] gnu: Add ocaml-odoc., pukkamustard, 2020/12/28
- [bug#45498] [PATCH 08/12] gnu: ocaml-markup: Update to 1.0.0., pukkamustard, 2020/12/28
- [bug#45498] [PATCH 11/12] gnu: Add ocaml-mdx., pukkamustard, 2020/12/28
- [bug#45498] [PATCH 10/12] gnu: Add ocaml-version., pukkamustard, 2020/12/28
- [bug#45498] [PATCH 12/12] gnu: Add ocaml-merlin., pukkamustard, 2020/12/28
- [bug#34412] [bug#45498] [PATCH 00/12] Add ocaml-merlin., Julien Lepiller, 2020/12/28
- [bug#45498] [PATCH 00/12] Add ocaml-merlin., pukkamustard, 2020/12/28
- [bug#45498] [PATCH v2 01/13] gnu: Remove ocaml-js-build-tools., pukkamustard, 2020/12/28
- [bug#45498] [PATCH v2 04/13] gnu: Add ocaml-parsexp.,
pukkamustard <=
- [bug#45498] [PATCH v2 05/13] gnu: Add ocaml-sexplib., pukkamustard, 2020/12/28
- [bug#45498] [PATCH v2 07/13] gnu: ocaml-tyxml: Update to 4.4.0., pukkamustard, 2020/12/28
- [bug#45498] [PATCH v2 08/13] gnu: ocaml-markup: Update to 1.0.0., pukkamustard, 2020/12/28
- [bug#45498] [PATCH v2 02/13] gnu: Add ocaml-sexplib0., pukkamustard, 2020/12/28
- [bug#45498] [PATCH v2 03/13] gnu: Add ocaml-base., pukkamustard, 2020/12/28
- [bug#45498] [PATCH v2 06/13] gnu: Add ocaml-ounit2., pukkamustard, 2020/12/28
- [bug#45498] [PATCH v2 11/13] gnu: Add ocaml-mdx., pukkamustard, 2020/12/28
- [bug#45498] [PATCH v2 10/13] gnu: Add ocaml-version., pukkamustard, 2020/12/28
- [bug#45498] [PATCH v2 13/13] gnu: ocaml-yojson: Make dependencies propagated-inputs., pukkamustard, 2020/12/28
- [bug#45498] [PATCH v2 09/13] gnu: Add ocaml-odoc., pukkamustard, 2020/12/28