gnu: node-irc-colors: Move package in alphabetical order.
* gnu/packages/node-xyz.scm (node-irc-colors): Move package in alphabetical order. Change-Id: If30c3362a7b36be5c6e6c2e6c4284242f185f1bd
This commit is contained in:
parent
cb1107416e
commit
3fec61b1c9
1 changed files with 29 additions and 29 deletions
|
@ -539,35 +539,6 @@ Node's @code{inherits} constructor that can be used in browsers, while
|
||||||
defaulting to Node's implementation otherwise.")
|
defaulting to Node's implementation otherwise.")
|
||||||
(license license:isc)))
|
(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
|
|
||||||
'(#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-after 'patch-dependencies 'delete-dependencies
|
|
||||||
(lambda args
|
|
||||||
(delete-dependencies `("istanbul" "vows")))))
|
|
||||||
#:tests? #f))
|
|
||||||
(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)))
|
|
||||||
|
|
||||||
(define-public node-irc
|
(define-public node-irc
|
||||||
(package
|
(package
|
||||||
(name "node-irc")
|
(name "node-irc")
|
||||||
|
@ -598,6 +569,35 @@ such as rainbows.")
|
||||||
It has functions for joining, parting, talking, and many other IRC commands.")
|
It has functions for joining, parting, talking, and many other IRC commands.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(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
|
||||||
|
'(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'patch-dependencies 'delete-dependencies
|
||||||
|
(lambda args
|
||||||
|
(delete-dependencies `("istanbul" "vows")))))
|
||||||
|
#:tests? #f))
|
||||||
|
(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)))
|
||||||
|
|
||||||
(define-public node-long-stack-traces
|
(define-public node-long-stack-traces
|
||||||
(package
|
(package
|
||||||
(name "node-long-stack-traces")
|
(name "node-long-stack-traces")
|
||||||
|
|
Reference in a new issue