mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-16 16:08:04 -05:00
gnu: Add ocaml-textutils.
* gnu/packages/ocaml.scm (ocaml-textutils): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
c91f8f9b7b
commit
47bc3fc743
1 changed files with 26 additions and 0 deletions
|
@ -8462,6 +8462,32 @@ (define-public ocaml-textutils-kernel
|
|||
javascript.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ocaml-textutils
|
||||
(package
|
||||
(name "ocaml-textutils")
|
||||
(version "0.15.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/janestreet/textutils")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1wass49h645wql9b7nck2iqlkf4648dkxvlvxixr7z80zcnb5rxr"))))
|
||||
(build-system dune-build-system)
|
||||
(propagated-inputs (list ocaml-core
|
||||
ocaml-core-kernel
|
||||
ocaml-core-unix
|
||||
ocaml-ppx-jane
|
||||
ocaml-textutils-kernel
|
||||
ocaml-uutf))
|
||||
(home-page "https://github.com/janestreet/textutils")
|
||||
(synopsis "Text output utilities")
|
||||
(description
|
||||
"Utilities for working with terminal output, such as color printing.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ocaml-timezone
|
||||
(package
|
||||
(name "ocaml-timezone")
|
||||
|
|
Loading…
Reference in a new issue