diff options
author | Ron Nazarov <noisytoot@disroot.org> | 2021-08-29 20:39:30 +0100 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-09-23 10:48:37 +0300 |
commit | 45a0b5f77d4dcc4c7ad96f26b23031332ca53306 (patch) | |
tree | e8a14c8a8685bca3811cd11de16c730ff5eeb871 /gnu/packages/node-xyz.scm | |
parent | df3b0646070cc4669736aa9e8eb6fc3d855bcd7b (diff) | |
download | guix-45a0b5f77d4dcc4c7ad96f26b23031332ca53306.tar.gz |
gnu: Add node-irc-colors.
* gnu/packages/node-xyz.scm (node-irc-colors): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu/packages/node-xyz.scm')
-rw-r--r-- | gnu/packages/node-xyz.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm index f74465346a..bef32fe7a3 100644 --- a/gnu/packages/node-xyz.scm +++ b/gnu/packages/node-xyz.scm @@ -357,3 +357,32 @@ function with browser support.") Subsequent calls will either return the cached previous value or throw an error if desired.") (license license:isc))) + +(define-public node-irc-colors + (package + (name "node-irc-colors") + (version "1.5.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fent/irc-colors.js") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0q3y34rbnlc55jcakmdxkicwazyvyph9r6gaf6hi8k7wj2nfwfli")))) + (build-system node-build-system) + (arguments + '(#:tests? #f ; FIXME: tests depend on node-istanbul + #:phases + (modify-phases %standard-phases + ;; The default configure phase fails due to various packages + ;; being missing, as we don't have them packaged yet. + (delete 'configure)))) + (home-page "https://github.com/fent/irc-colors.js") + (synopsis "Node.js module providing color and formatting for IRC") + (description "@code{node-irc-colors} is a Node.js module that +allows you to easily use colored output and formatting in IRC bots. +It contains functions for colours as well as more complex formatting +such as rainbows.") + (license license:expat))) |