summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Lepiller <julien@lepiller.eu>2022-04-30 15:54:35 +0200
committerJulien Lepiller <julien@lepiller.eu>2022-04-30 18:00:34 +0200
commit3ee7e8c5b9b44e948a9132870771c98f90eda79d (patch)
treec23a9d94e6d7a6ddf8b9d911e5d4cfc86a23e95f
parentfbcd25f5ef2f3d51dae30d0f8085d6a57c4944a7 (diff)
downloadguix-patches-3ee7e8c5b9b44e948a9132870771c98f90eda79d.tar
guix-patches-3ee7e8c5b9b44e948a9132870771c98f90eda79d.tar.gz
gnu: camlp5: Update to 8.00.03.
* gnu/packages/ocaml.scm (camlp5): Update to 8.00.03.
-rw-r--r--gnu/packages/ocaml.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 64eb5261a9..fa98f6525d 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -945,7 +945,7 @@ be maintained and distributed separately in the camlpstreams package.")
(define-public camlp5
(package
(name "camlp5")
- (version "8.00.02")
+ (version "8.00.03")
(source
(origin
(method git-fetch)
@@ -954,7 +954,7 @@ be maintained and distributed separately in the camlpstreams package.")
(commit (string-append "rel" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "03qm99h2380x0y69sppg10yz1mwx7smkscia7pa175wmilifx8vy"))))
+ (base32 "1fnvmaw9cland09pjx5h6w3f6fz9s23l4nbl4m9fcaa2i4dpraz6"))))
(build-system gnu-build-system)
(arguments
`(#:tests? #f ; XXX TODO figure out how to run the tests
@@ -986,9 +986,9 @@ be maintained and distributed separately in the camlpstreams package.")
"/lib/ocaml/camlp5/"))
#t)))))
(inputs
- (list ocaml))
+ (list ocaml ocaml-camlp-streams))
(native-inputs
- (list perl))
+ (list perl ocaml-findlib))
(home-page "https://camlp5.github.io/")
(synopsis "Pre-processor Pretty Printer for OCaml")
(description