diff options
author | Julien Lepiller <julien@lepiller.eu> | 2023-12-25 10:59:11 +0100 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2023-12-30 22:10:26 +0100 |
commit | 9ba9487306843c7c959e62ab28e6197801828580 (patch) | |
tree | e54df2de33890e086045ce01ffc87fa0e0b6574b /gnu | |
parent | 0dc699477e79bb7a9cc1147439dbc04f3d006520 (diff) | |
download | guix-9ba9487306843c7c959e62ab28e6197801828580.tar.gz guix-9ba9487306843c7c959e62ab28e6197801828580.zip |
gnu: Remove ocaml4.07-ppx-sexp-message.
* gnu/packages/ocaml.scm (ocaml4.07-ppx-sexp-message): Remove variable.
(ocaml-ppx-sexp-message)[properties]: Remove variant.
Change-Id: Iaee2fbecb086ddad1b15b878d8148f9101903834
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ocaml.scm | 25 |
1 files changed, 1 insertions, 24 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 1dda348ade..860ff4f752 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -7163,8 +7163,7 @@ building s-expressions from ocaml values.") (build-system dune-build-system) (propagated-inputs (list ocaml-base ocaml-ppx-here ocaml-ppx-sexp-conv ocaml-ppxlib)) - (properties `((upstream-name . "ppx_sexp_message") - (ocaml4.07-variant . ,(delay ocaml4.07-ppx-sexp-message)))) + (properties `((upstream-name . "ppx_sexp_message"))) (home-page "https://github.com/janestreet/ppx_sexp_message") (synopsis "Ppx rewriter for easy construction of s-expressions") (description "Ppx_sexp_message aims to ease the creation of s-expressions @@ -7173,28 +7172,6 @@ where one needs to construct a s-expression based on various element of the context such as function arguments.") (license license:expat))) -(define-public ocaml4.07-ppx-sexp-message - (package-with-ocaml4.07 - (package - (inherit ocaml-ppx-sexp-message) - (version "0.11.0") - (source (origin - (method url-fetch) - (uri (string-append "https://ocaml.janestreet.com/ocaml-core/v" - (version-major+minor version) - "/files/ppx_sexp_message-v" version ".tar.gz")) - (sha256 - (base32 - "1yh440za0w9cvrbxbmqacir8715kdaw6sw24ys9xj80av9nqpiw7")))) - (propagated-inputs - (list ocaml-base - ocaml-ppx-here - ocaml-ppx-sexp-conv - ocaml-migrate-parsetree - ocaml-ppxlib)) - (properties '()) - (license license:asl2.0)))) - (define-public ocaml-ppx-pipebang (package (name "ocaml-ppx-pipebang") |