mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add ocaml-ppx-variants-conv.
* gnu/packages/ocaml.scm (ocaml-ppx-variants-conv): New variable.
This commit is contained in:
parent
c7cf165e38
commit
7523674c2b
1 changed files with 29 additions and 0 deletions
|
@ -5300,3 +5300,32 @@ (define-public ocaml-ppx-sexp-conv
|
|||
(description "This package generates S-expression conversion functions from type
|
||||
definitions.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public ocaml-ppx-variants-conv
|
||||
(package
|
||||
(name "ocaml-ppx-variants-conv")
|
||||
(version "0.11.1")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/janestreet/ppx_variants_conv.git")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1yc0gsds5m2nv39zga8nnrca2n75rkqy5dz4xj1635ybz20hhbjd"))))
|
||||
(build-system dune-build-system)
|
||||
(propagated-inputs
|
||||
`(("ocaml-base" ,ocaml-base)
|
||||
("ocaml-variantslib" ,ocaml-variantslib)
|
||||
("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
|
||||
("ocaml-ppxlib" ,ocaml-ppxlib)))
|
||||
(properties
|
||||
`((upstream-name . "ppx_variants_conv")))
|
||||
(home-page
|
||||
"https://github.com/janestreet/ppx_variants_conv")
|
||||
(synopsis "Generation of accessor and iteration functions for OCaml variant types")
|
||||
(description
|
||||
"This package generates accessors and interation functions for OCaml
|
||||
variant types.")
|
||||
(license license:asl2.0)))
|
||||
|
|
Loading…
Reference in a new issue