mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-16 16:08:04 -05:00
gnu: Add ocaml-textutils-kernel.
* gnu/packages/ocaml.scm (ocaml-textutils-kernel): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
3f84fbd2f1
commit
c91f8f9b7b
1 changed files with 23 additions and 0 deletions
|
@ -8439,6 +8439,29 @@ (define-public ocaml-async-unix
|
|||
system calls run in.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ocaml-textutils-kernel
|
||||
(package
|
||||
(name "ocaml-textutils-kernel")
|
||||
(version "0.15.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/janestreet/textutils_kernel")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"068g11d98wsb5a6ds0p5xybdmx5nx9bxa0k11dmh3l57kn4c169x"))))
|
||||
(build-system dune-build-system)
|
||||
(propagated-inputs (list ocaml-core ocaml-ppx-jane ocaml-uutf))
|
||||
(properties `((upstream-name . "textutils_kernel")))
|
||||
(home-page "https://github.com/janestreet/textutils_kernel")
|
||||
(synopsis "Text output utilities")
|
||||
(description
|
||||
"The subset of textutils using only core_kernel and working in
|
||||
javascript.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ocaml-timezone
|
||||
(package
|
||||
(name "ocaml-timezone")
|
||||
|
|
Loading…
Reference in a new issue