diff options
author | Ron Nazarov <noisytoot@disroot.org> | 2021-08-29 20:41:52 +0100 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-09-23 10:48:37 +0300 |
commit | c3236c2e31c351991e7c5846cd57855eae1f4319 (patch) | |
tree | 5e05a7a63e8564e6d305b84f60f3173653f58de3 /gnu | |
parent | 45a0b5f77d4dcc4c7ad96f26b23031332ca53306 (diff) | |
download | guix-c3236c2e31c351991e7c5846cd57855eae1f4319.tar guix-c3236c2e31c351991e7c5846cd57855eae1f4319.tar.gz |
gnu: Add node-irc.
* gnu/packages/node-xyz.scm (node-irc): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu')
-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 bef32fe7a3..98c611f227 100644 --- a/gnu/packages/node-xyz.scm +++ b/gnu/packages/node-xyz.scm @@ -386,3 +386,32 @@ 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))) + +(define-public node-irc + (package + (name "node-irc") + (version "0.5.2") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/martynsmith/node-irc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1ln4qfx20jbwg4cp8lp0vf27m5281z2sz16d15xd6150n26cbi4x")))) + (build-system node-build-system) + (arguments + '(#:tests? #f ; FIXME: tests depend on node-faucet + #: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)))) + (inputs + `(("node-irc-colors" ,node-irc-colors))) + (home-page "https://github.com/martynsmith/node-irc") + (synopsis "IRC client library for Node.js") + (description "@code{node-irc} is an IRC client library for Node.js. +It has functions for joining, parting, talking, and many other IRC commands.") + (license license:gpl3+))) |