diff options
author | Pierre-Henry Fröhring <phfrohring@deeplinks.com> | 2023-12-10 14:04:01 +0100 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-12-17 22:22:31 +0100 |
commit | 87e3f0b9b56af55a3180af2e5629d73c79926126 (patch) | |
tree | c7f869d862fd357ac69720ba85554664f6dcf8be | |
parent | e490763f2727b682c9a019ff7e7057e65aa5fbd5 (diff) | |
download | guix-87e3f0b9b56af55a3180af2e5629d73c79926126.tar.gz guix-87e3f0b9b56af55a3180af2e5629d73c79926126.zip |
gnu: Add elixir-bunt.
* gnu/packages/elixir-xyz.scm (elixir-bunt): New variable.
Change-Id: Ib84797c31d6ab40d59b87b040993dae9391ead6b
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
-rw-r--r-- | gnu/packages/elixir-xyz.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/elixir-xyz.scm b/gnu/packages/elixir-xyz.scm index 948d8aecc6..33fa20749b 100644 --- a/gnu/packages/elixir-xyz.scm +++ b/gnu/packages/elixir-xyz.scm @@ -124,6 +124,25 @@ https://github.com/synrc/fs.") (home-page "https://hexdocs.pm/file_system/") (license license:wtfpl2))) +(define-public elixir-bunt + (package + (name "elixir-bunt") + (version "0.2.1") + (source + (origin + (method url-fetch) + (uri (hexpm-uri name version)) + (sha256 + (base32 "19bp6xh052ql3ha0v3r8999cvja5d2p6cph02mxphfaj4jsbyc53")))) + (build-system mix-build-system) + (arguments (list #:tests? #f)) ; no tests + (synopsis "256 color ANSI coloring in the terminal") + (description "Bunt is an Elixir package that enables 256 color ANSI +coloring in the terminal and allows users to alias colors to more semantic and +application-specific names1.") + (home-page "https://hexdocs.pm/bunt/") + (license license:expat))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar |