me
/
guix
Archived
1
0
Fork 0

gnu: Add ocaml-ppx-string.

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

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

View File

@ -6247,6 +6247,29 @@ from type definitions.")
(list ocaml-base ocaml-typerep ocaml-migrate-parsetree ocaml-ppxlib)) (list ocaml-base ocaml-typerep ocaml-migrate-parsetree ocaml-ppxlib))
(license license:asl2.0)))) (license license:asl2.0))))
(define-public ocaml-ppx-string
(package
(name "ocaml-ppx-string")
(version "0.14.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/janestreet/ppx_string")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0a8khmg0y32kyn3q6idwgh0d6d1s6ms1w75gj3dzng0v7y4h6jx4"))))
(build-system dune-build-system)
(arguments `(#:tests? #f)); no tests
(propagated-inputs
(list ocaml-base ocaml-ppx-base ocaml-stdio ocaml-ppxlib))
(properties `((upstream-name . "ppx_string")))
(home-page "https://github.com/janestreet/ppx_string")
(synopsis "Ppx extension for string interpolation")
(description "This extension provides a syntax for string interpolation.")
(license license:expat)))
(define-public ocaml-ppx-base (define-public ocaml-ppx-base
(package (package
(name "ocaml-ppx-base") (name "ocaml-ppx-base")