gnu: node-string-decoder: Move package in alphabetical order.
* gnu/packages/node-xyz.scm (node-string-decoder): Move package in alphabetical order. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
ded5f62abe
commit
d2eb7a2b5a
1 changed files with 33 additions and 33 deletions
|
@ -735,6 +735,39 @@ compatibility check.")
|
||||||
protocol used in @code{node-lynx}.")
|
protocol used in @code{node-lynx}.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public node-string-decoder
|
||||||
|
(package
|
||||||
|
(name "node-string-decoder")
|
||||||
|
(version "1.3.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/nodejs/string_decoder")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0xxvyya9fl9rlkqwmxzqzbz4rdr3jgw4vf37hff7cgscxkhg266k"))))
|
||||||
|
(build-system node-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'patch-dependencies 'delete-dependencies
|
||||||
|
(lambda args
|
||||||
|
(delete-dependencies
|
||||||
|
'("tap" "core-util-is" "babel-polyfill")))))
|
||||||
|
;; FIXME: Tests depend on node-tap
|
||||||
|
#:tests? #f))
|
||||||
|
(inputs (list node-safe-buffer node-inherits))
|
||||||
|
(home-page "https://github.com/nodejs/string_decoder")
|
||||||
|
(synopsis "Decode buffers while preserving multi-byte sequences")
|
||||||
|
(description "This package provides a user-land implementation of
|
||||||
|
Node-core's @code{string_decoder}, which serves to decode buffers to
|
||||||
|
strings so that the decoded string does not contain incomplete multibyte
|
||||||
|
sequences.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public node-semver
|
(define-public node-semver
|
||||||
(package
|
(package
|
||||||
(name "node-semver")
|
(name "node-semver")
|
||||||
|
@ -838,39 +871,6 @@ function with browser support.")
|
||||||
particular cross-platform spellings of the PATH environment variable key.")
|
particular cross-platform spellings of the PATH environment variable key.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public node-string-decoder
|
|
||||||
(package
|
|
||||||
(name "node-string-decoder")
|
|
||||||
(version "1.3.0")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/nodejs/string_decoder")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0xxvyya9fl9rlkqwmxzqzbz4rdr3jgw4vf37hff7cgscxkhg266k"))))
|
|
||||||
(build-system node-build-system)
|
|
||||||
(arguments
|
|
||||||
'(#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-after 'patch-dependencies 'delete-dependencies
|
|
||||||
(lambda args
|
|
||||||
(delete-dependencies
|
|
||||||
'("tap" "core-util-is" "babel-polyfill")))))
|
|
||||||
;; FIXME: Tests depend on node-tap
|
|
||||||
#:tests? #f))
|
|
||||||
(inputs (list node-safe-buffer node-inherits))
|
|
||||||
(home-page "https://github.com/nodejs/string_decoder")
|
|
||||||
(synopsis "Decode buffers while preserving multi-byte sequences")
|
|
||||||
(description "This package provides a user-land implementation of
|
|
||||||
Node-core's @code{string_decoder}, which serves to decode buffers to
|
|
||||||
strings so that the decoded string does not contain incomplete multibyte
|
|
||||||
sequences.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public node-readable-stream
|
(define-public node-readable-stream
|
||||||
(package
|
(package
|
||||||
(name "node-readable-stream")
|
(name "node-readable-stream")
|
||||||
|
|
Reference in a new issue