me
/
guix
Archived
1
0
Fork 0

gnu: Add ocaml-ppx-js-style.

* gnu/packages/ocaml.scm (ocaml-ppx-js-style): New variable.
master
Julien Lepiller 2019-02-01 18:47:25 +01:00
parent 4e4e5fb1df
commit f4304c1d6c
No known key found for this signature in database
GPG Key ID: 43111F4520086A0C
1 changed files with 29 additions and 0 deletions

View File

@ -5785,3 +5785,32 @@ to Cram. Expect-tests mimics the existing inline tests framework with the
output-generating code, interleaved with @code{%expect} extension expressions
to denote the expected output.")
(license license:asl2.0)))
(define-public ocaml-ppx-js-style
(package
(name "ocaml-ppx-js-style")
(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_js_style-v" version ".tar.gz"))
(sha256
(base32
"0z3fc55jdjhhsblla6z4fqc13kljpcz29q79rvs5h2vsraqrldr2"))))
(build-system dune-build-system)
(arguments
;; No tests
`(#:tests? #f))
(propagated-inputs
`(("ocaml-base" ,ocaml-base)
("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
("ocaml-octavius" ,ocaml-octavius)
("ocaml-ppxlib" ,ocaml-ppxlib)))
(properties `((upstream-name . "ppx_js_style")))
(home-page "https://github.com/janestreet/ppx_js_style")
(synopsis "Code style checker for Jane Street Packages")
(description "This packages is a no-op ppx rewriter. It is used as a
@code{lint} tool to enforce some coding conventions across all Jane Street
packages.")
(license license:asl2.0)))