gnu: Add ocaml-ppx-inline-test.

* gnu/packages/ocaml.scm (ocaml-ppx-inline-test): New variable.

Signed-off-by: Julien Lepiller <julien@lepiller.eu>
This commit is contained in:
Gabriel Hondet 2019-02-01 09:50:22 +01:00 committed by Julien Lepiller
parent b2c2c415c5
commit 308d72bfe4
No known key found for this signature in database
GPG key ID: 43111F4520086A0C

View file

@ -4694,6 +4694,38 @@ (define-public emacs-flycheck-dedukti
syntax checking on dedukti files.")
(license license:cecill-b))))
(define-public ocaml-ppx-inline-test
(package
(name "ocaml-ppx-inline-test")
(version "0.11.0")
(home-page "https://github.com/janestreet/ppx_inline_test")
(source
(origin
(method git-fetch)
(uri (git-reference
(url (string-append home-page ".git"))
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"11n94fz1asjf5vqdgriv0pvsa5lbfpqcyk525c7816w23vskcvq6"))))
(build-system dune-build-system)
(arguments
;see home page README for further information
`(#:tests? #f))
(inputs
`(("ocaml-base" ,ocaml-base)
("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
("ocaml-compiler-libs" ,ocaml-compiler-libs)
("ocaml-sexplib0" ,ocaml-sexplib0)
("ocaml-stdio" ,ocaml-stdio)
("ocaml-ppxlib" ,ocaml-ppxlib)))
(synopsis "Syntax extension for writing in-line tests in ocaml code")
(description "This package contains a syntax extension for writing
in-line tests in ocaml code. It is part of Jane Street's PPX rewriters
collection.")
(license license:expat)))
(define-public ocaml-biniou
(package
(name "ocaml-biniou")