me
/
guix
Archived
1
0
Fork 0

gnu: Add ocaml-ppx-jane.

* gnu/packages/ocaml.scm (ocaml-ppx-jane): New variable.
(ocaml4.07-ppx-jane): Inherit from it.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Julien Lepiller 2022-04-08 15:23:00 +02:00 committed by Ludovic Courtès
parent e487d5666a
commit 9fe3632e64
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 77 additions and 39 deletions

View File

@ -6527,52 +6527,90 @@ functions from type definitions.")
(properties '()) (properties '())
(license license:asl2.0)))) (license license:asl2.0))))
(define-public ocaml4.07-ppx-jane (define-public ocaml-ppx-jane
(package (package
(name "ocaml4.07-ppx-jane") (name "ocaml-ppx-jane")
(version "0.11.0") (version "0.14.0")
(source (origin (source
(method url-fetch) (origin
(uri (string-append "https://ocaml.janestreet.com/ocaml-core/v" (method git-fetch)
(version-major+minor version) (uri (git-reference
"/files/ppx_jane-v" version ".tar.gz")) (url "https://github.com/janestreet/ppx_jane")
(sha256 (commit (string-append "v" version))))
(base32 (file-name (git-file-name name version))
"0lgppkw3aixrfnixihrsz2ipafv8fpvkdpy3pw8n0r615gg8x8la")))) (sha256
(base32 "1kk238fvrcylymwm7xwc7llbyspmx1y662ypq00vy70g112rir7j"))))
(build-system dune-build-system) (build-system dune-build-system)
(arguments (arguments
`(#:test-target "." `(#:test-target "."))
#:ocaml ,ocaml-4.07
#:findlib ,ocaml4.07-findlib
#:dune ,ocaml4.07-dune))
(propagated-inputs (propagated-inputs
`(("ocaml-ppx-assert" ,(package-with-ocaml4.07 ocaml-ppx-assert)) (list ocaml-base-quickcheck
("ocaml-ppx-base" ,(package-with-ocaml4.07 ocaml-ppx-base)) ocaml-ppx-assert
("ocaml-ppx-bench" ,ocaml4.07-ppx-bench) ocaml-ppx-base
("ocaml-ppx-bin-prot" ,ocaml4.07-ppx-bin-prot) ocaml-ppx-bench
("ocaml-ppx-custom-printf" ,(package-with-ocaml4.07 ocaml-ppx-custom-printf)) ocaml-ppx-bin-prot
("ocaml-ppx-expect" ,(package-with-ocaml4.07 ocaml-ppx-expect)) ocaml-ppx-custom-printf
("ocaml-ppx-fail" ,ocaml4.07-ppx-fail) ocaml-ppx-expect
("ocaml-ppx-fields-conv" ,(package-with-ocaml4.07 ocaml-ppx-fields-conv)) ocaml-ppx-fields-conv
("ocaml-ppx-here" ,(package-with-ocaml4.07 ocaml-ppx-here)) ocaml-ppx-fixed-literal
("ocaml-ppx-inline-test" ,(package-with-ocaml4.07 ocaml-ppx-inline-test)) ocaml-ppx-here
("ocaml-ppx-let" ,(package-with-ocaml4.07 ocaml-ppx-let)) ocaml-ppx-inline-test
("ocaml-ppx-optcomp" ,(package-with-ocaml4.07 ocaml-ppx-optcomp)) ocaml-ppx-let
("ocaml-ppx-optional" ,(package-with-ocaml4.07 ocaml-ppx-optional)) ocaml-ppx-module-timer
("ocaml-ppx-pipebang" ,ocaml4.07-ppx-pipebang) ocaml-ppx-optcomp
("ocaml-ppx-sexp-message" ,ocaml4.07-ppx-sexp-message) ocaml-ppx-optional
("ocaml-ppx-sexp-value" ,ocaml4.07-ppx-sexp-value) ocaml-ppx-pipebang
("ocaml-ppx-typerep-conv" ,ocaml4.07-ppx-typerep-conv) ocaml-ppx-sexp-message
("ocaml-ppx-variants-conv" ,(package-with-ocaml4.07 ocaml-ppx-variants-conv)) ocaml-ppx-sexp-value
("ocaml-migrate-parsetree" ocaml-ppx-stable
,(package-with-ocaml4.07 ocaml-migrate-parsetree)) ocaml-ppx-string
("ocaml-ppxlib" ,(package-with-ocaml4.07 ocaml-ppxlib)))) ocaml-ppx-typerep-conv
(properties `((upstream-name . "ppx_jane"))) ocaml-ppx-variants-conv
ocaml-ppxlib))
(properties `((upstream-name . "ppx_jane")
(ocaml4.07-variant . ,(delay ocaml4.07-ppx-jane))))
(home-page "https://github.com/janestreet/ppx_jane") (home-page "https://github.com/janestreet/ppx_jane")
(synopsis "Standard Jane Street ppx rewriters") (synopsis "Standard Jane Street ppx rewriters")
(description "This package installs a ppx-jane executable, which is a ppx (description "This package installs a ppx-jane executable, which is a ppx
driver including all standard Jane Street ppx rewriters.") driver including all standard Jane Street ppx rewriters.")
(license license:asl2.0))) (license license:expat)))
(define-public ocaml4.07-ppx-jane
(package-with-ocaml4.07
(package
(inherit ocaml-ppx-jane)
(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_jane-v" version ".tar.gz"))
(sha256
(base32
"0lgppkw3aixrfnixihrsz2ipafv8fpvkdpy3pw8n0r615gg8x8la"))))
(propagated-inputs
(list ocaml-ppx-assert
ocaml-ppx-base
ocaml-ppx-bench
ocaml-ppx-bin-prot
ocaml-ppx-custom-printf
ocaml-ppx-expect
ocaml-ppx-fail
ocaml-ppx-fields-conv
ocaml-ppx-here
ocaml-ppx-inline-test
ocaml-ppx-let
ocaml-ppx-optcomp
ocaml-ppx-optional
ocaml-ppx-pipebang
ocaml-ppx-sexp-message
ocaml-ppx-sexp-value
ocaml-ppx-typerep-conv
ocaml-ppx-variants-conv
ocaml-migrate-parsetree
ocaml-ppxlib))
(properties '())
(license license:asl2.0))))
(define-public ocaml-splittable-random (define-public ocaml-splittable-random
(package (package
@ -6621,7 +6659,7 @@ cryptographic-quality randomness in favor of performance.")
(base32 (base32
"0l1wbd881mymlnpzlq5q53mmdz3g5d7qjhyc7lfaq1x0iaccn5lc")))) "0l1wbd881mymlnpzlq5q53mmdz3g5d7qjhyc7lfaq1x0iaccn5lc"))))
(propagated-inputs (propagated-inputs
(list ocaml-base ocaml4.07-ppx-jane ocaml-migrate-parsetree)) (list ocaml-base ocaml-ppx-jane ocaml-migrate-parsetree))
(properties '()) (properties '())
(license license:asl2.0)))) (license license:asl2.0))))