mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add ocaml-typerep.
* gnu/packages/ocaml.scm (ocaml-typerep): New variable.
This commit is contained in:
parent
164b06daeb
commit
a58118ca6b
1 changed files with 21 additions and 0 deletions
|
@ -5515,3 +5515,24 @@ (define-public ocaml-ppx-here
|
|||
(description
|
||||
"Part of the Jane Street's PPX rewriters collection.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public ocaml-typerep
|
||||
(package
|
||||
(name "ocaml-typerep")
|
||||
(version "0.11.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://ocaml.janestreet.com/ocaml-core/v"
|
||||
(version-major+minor version)
|
||||
"/files/typerep-v" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1zi7hy0prpgzqhr4lkacr04wvlvbp21jfbdfvffhrm6cd400rb5v"))))
|
||||
(build-system dune-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f))
|
||||
(propagated-inputs `(("ocaml-base" ,ocaml-base)))
|
||||
(home-page "https://github.com/janestreet/typerep")
|
||||
(synopsis "Typerep is a library for runtime types")
|
||||
(description "Typerep is a library for runtime types.")
|
||||
(license license:asl2.0)))
|
||||
|
|
Loading…
Reference in a new issue