gnu: Add ocaml-dune-build-info.
* gnu/packages/ocaml.scm (ocaml-dune-build-info): New variable. Signed-off-by: Julien Lepiller <julien@lepiller.eu>
parent
03f05b475b
commit
092b65e1aa
|
@ -7086,6 +7086,24 @@ representation.")
|
||||||
that involve memoization and recursion.")
|
that involve memoization and recursion.")
|
||||||
(license license:lgpl2.0)))
|
(license license:lgpl2.0)))
|
||||||
|
|
||||||
|
(define-public ocaml-dune-build-info
|
||||||
|
(package
|
||||||
|
(inherit dune)
|
||||||
|
(name "ocaml-dune-build-info")
|
||||||
|
(build-system dune-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:package "dune-build-info"
|
||||||
|
;; No separate test suite from dune.
|
||||||
|
#:tests? #f))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("ocaml-odoc" ,ocaml-odoc)))
|
||||||
|
(synopsis "Embed build informations inside executable")
|
||||||
|
(description "This package allows one to access information about how the
|
||||||
|
executable was built, such as the version of the project at which it was built
|
||||||
|
or the list of statically linked libraries with their versions. It supports
|
||||||
|
reporting the version from the version control system during development to
|
||||||
|
get an precise reference of when the executable was built.")))
|
||||||
|
|
||||||
(define-public ocaml-bigstringaf
|
(define-public ocaml-bigstringaf
|
||||||
(package
|
(package
|
||||||
(name "ocaml-bigstringaf")
|
(name "ocaml-bigstringaf")
|
||||||
|
|
Reference in New Issue