diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-09-06 14:37:50 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-09-07 05:08:58 +0300 |
commit | 92820c17320cc1a936419819ca05ef609c3fe42d (patch) | |
tree | ba5ff936a35256fb313550a22b16ba5dc58c662b /gnu/packages/julia-xyz.scm | |
parent | d552c2508f891a92c465492984ff498dcc384651 (diff) |
gnu: Add julia-stringmanipulation.
* gnu/packages/julia-xyz.scm (julia-stringmanipulation): New variable.
Diffstat (limited to 'gnu/packages/julia-xyz.scm')
-rw-r--r-- | gnu/packages/julia-xyz.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 7965b84721..75b55f1633 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -6030,6 +6030,26 @@ texts between multiple character encodings. It is currently based on the @code{iconv} interface, and supports all major platforms using GNU libiconv.") (license license:expat))) +(define-public julia-stringmanipulation + (package + (name "julia-stringmanipulation") + (version "0.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ronisbr/StringManipulation.jl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15ss8hkjyjs2x66j1krrrxaa1hdpwz0ygs3cg3bdpm336k7621q8")))) + (build-system julia-build-system) + (home-page "https://github.com/ronisbr/StringManipulation.jl") + (synopsis "Functions to manipulate strings with ANSI escape sequences") + (description "This package provides several functions to manipulate strings +with ANSI escape sequences.") + (license license:expat))) + (define-public julia-structarrays (package (name "julia-structarrays") |