diff options
author | Julien Lepiller <julien@lepiller.eu> | 2023-12-25 11:40:48 +0100 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2023-12-30 22:12:00 +0100 |
commit | 697328419e365f3f93a205fc54be860b5bfd4263 (patch) | |
tree | f80102795273a5196db717e21d95c6207d892f48 /gnu/packages | |
parent | f6cda7691f8dd221647ac4898510918c522d97f0 (diff) | |
download | guix-697328419e365f3f93a205fc54be860b5bfd4263.tar.gz guix-697328419e365f3f93a205fc54be860b5bfd4263.zip |
gnu: Remove ocaml4.07-ppx-sexp-conv.
* gnu/packages/ocaml.scm (ocaml4.07-ppx-sexp-conv): Remove variable.
(ocaml-ppx-sexp-conv)[properties]: Remove variant.
Change-Id: I6471c4e4f0c7cd8d3dd04f0ea0f4ce064759b37b
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/ocaml.scm | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 157d9d34bb..b5c576ac89 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -6556,30 +6556,12 @@ new record values.") (build-system dune-build-system) (propagated-inputs (list ocaml-base ocaml-ppxlib)) - (properties `((upstream-name . "ppx_sexp_conv") - (ocaml4.07-variant . ,(delay ocaml4.07-ppx-sexp-conv)))) + (properties `((upstream-name . "ppx_sexp_conv"))) (synopsis "Generation of S-expression conversion functions from type definitions") (description "This package generates S-expression conversion functions from type definitions.") (license license:asl2.0))) -(define-public ocaml4.07-ppx-sexp-conv - (package-with-ocaml4.07 - (package - (inherit ocaml-ppx-sexp-conv) - (name "ocaml-ppx-sexp-conv") - (version "0.11.2") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/janestreet/ppx_sexp_conv") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0pqwnqy1xp309wvdcaax4lg02yk64lq2w03mbgfvf6ps5ry4gis9")))) - (properties `((upstream-name . "ppx_sexp_conv")))))) - (define-public ocaml-ppx-variants-conv (package (name "ocaml-ppx-variants-conv") |