me
/
guix
Archived
1
0
Fork 0

gnu: Add ocaml-ppx-bitstring.

* gnu/packages/ocaml.scm (ocaml-ppx-bitstring): New variable.
master
Julien Lepiller 2022-06-18 23:47:01 +02:00
parent 35ee95f481
commit 0d5c88737b
No known key found for this signature in database
GPG Key ID: 53D457B2D636EE82
1 changed files with 16 additions and 0 deletions

View File

@ -2017,6 +2017,22 @@ powerful.")
`(("ocaml-ppx-tools-versioned" ,ocaml4.07-ppx-tools-versioned)))
(properties '()))))
(define-public ocaml-ppx-bitstring
(package
(inherit ocaml-bitstring)
(name "ocaml-ppx-bitstring")
(arguments
`(#:package "ppx_bitstring"
;; No tests
#:tests? #f))
(propagated-inputs (list ocaml-bitstring ocaml-ppxlib))
(native-inputs (list ocaml-ounit))
(properties `((upstream-name . "ppx_bitstring")))
(synopsis "PPX extension for bitstrings and bitstring matching")
(description
"This package provides a way to write bitstrings and matching over
bitsrings in Erlang style as primitives to the language.")))
(define-public ocaml-result
(package
(name "ocaml-result")