gnu: node-once: Move package in alphabetical order.
* gnu/packages/node-xyz.scm (node-once): Move package in alphabetical order. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
51fee99e26
commit
466fe22a89
1 changed files with 32 additions and 32 deletions
|
@ -401,6 +401,38 @@ Can also condense repeated slashes to a single slash and remove trailing
|
||||||
slashes, unless disabled.")
|
slashes, unless disabled.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public node-once
|
||||||
|
(package
|
||||||
|
(name "node-once")
|
||||||
|
(version "1.4.0")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/isaacs/once")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1z8dcbf28dqdcp4wb0c53wrs90a07nkrax2c9kk26dsk1dhrnxav"))))
|
||||||
|
(build-system node-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'patch-dependencies 'delete-dependencies
|
||||||
|
(lambda args
|
||||||
|
(delete-dependencies '("tap")))))
|
||||||
|
;; FIXME: Tests depend on node-tap
|
||||||
|
#:tests? #f))
|
||||||
|
(inputs
|
||||||
|
(list node-wrappy))
|
||||||
|
(home-page "https://github.com/isaacs/once")
|
||||||
|
(synopsis "Node.js module to call a function only once")
|
||||||
|
(description
|
||||||
|
"@code{once} is a Node.js module to call a function exactly one time.
|
||||||
|
Subsequent calls will either return the cached previous value or throw an error
|
||||||
|
if desired.")
|
||||||
|
(license license:isc)))
|
||||||
|
|
||||||
(define-public node-oop
|
(define-public node-oop
|
||||||
;; No releases, last commit was February 2013.
|
;; No releases, last commit was February 2013.
|
||||||
(let ((commit "f9d87cda0958886955c14a0a716e57021ed295dc")
|
(let ((commit "f9d87cda0958886955c14a0a716e57021ed295dc")
|
||||||
|
@ -695,38 +727,6 @@ function with browser support.")
|
||||||
(description "@code{wrappy} is a utility for Node.js to wrap callbacks.")
|
(description "@code{wrappy} is a utility for Node.js to wrap callbacks.")
|
||||||
(license license:isc)))
|
(license license:isc)))
|
||||||
|
|
||||||
(define-public node-once
|
|
||||||
(package
|
|
||||||
(name "node-once")
|
|
||||||
(version "1.4.0")
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/isaacs/once")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1z8dcbf28dqdcp4wb0c53wrs90a07nkrax2c9kk26dsk1dhrnxav"))))
|
|
||||||
(build-system node-build-system)
|
|
||||||
(arguments
|
|
||||||
'(#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-after 'patch-dependencies 'delete-dependencies
|
|
||||||
(lambda args
|
|
||||||
(delete-dependencies '("tap")))))
|
|
||||||
;; FIXME: Tests depend on node-tap
|
|
||||||
#:tests? #f))
|
|
||||||
(inputs
|
|
||||||
(list node-wrappy))
|
|
||||||
(home-page "https://github.com/isaacs/once")
|
|
||||||
(synopsis "Node.js module to call a function only once")
|
|
||||||
(description
|
|
||||||
"@code{once} is a Node.js module to call a function exactly one time.
|
|
||||||
Subsequent calls will either return the cached previous value or throw an error
|
|
||||||
if desired.")
|
|
||||||
(license license:isc)))
|
|
||||||
|
|
||||||
(define-public node-path-key
|
(define-public node-path-key
|
||||||
(package
|
(package
|
||||||
(name "node-path-key")
|
(name "node-path-key")
|
||||||
|
|
Reference in a new issue