me
/
guix
Archived
1
0
Fork 0

gnu: Add dune-dyn.

* gnu/packages/ocaml.scm (dune-dyn): New variable.

Change-Id: I34907a758c146d9f18ab5807c069dfe104e6854f
master
Julien Lepiller 2024-01-10 08:43:29 +01:00
parent b2a71b868c
commit 1cbb3fd8f0
No known key found for this signature in database
GPG Key ID: 53D457B2D636EE82
1 changed files with 13 additions and 0 deletions

View File

@ -2047,6 +2047,19 @@ about.")
(synopsis "Dune element ordering")
(description "This library represents element ordering in OCaml.")))
(define-public dune-dyn
(package
(inherit dune-ordering)
(name "dune-dyn")
(build-system dune-build-system)
(arguments
`(#:package "dyn"
;; Tests have a cyclic dependency on stdune
#:tests? #f))
(propagated-inputs (list ocaml-pp dune-ordering))
(synopsis "Dune dynamic types")
(description "This library represents dynamic types in OCaml.")))
(define-public ocaml-csexp
(package
(name "ocaml-csexp")