gnu: node-nan: Move package in alphabetical order.
* gnu/packages/node-xyz.scm (node-nan): Move package in alphabetical order. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>master
parent
d41d3d8fb2
commit
bd6c3acda2
|
@ -487,6 +487,45 @@ random number generator.")
|
||||||
Javascript.")
|
Javascript.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public node-nan
|
||||||
|
(package
|
||||||
|
(name "node-nan")
|
||||||
|
(version "2.15.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/nodejs/nan")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "18xslh9va5ld872scrp5y4251ax9s3c6qh0lnl1200lpzbsxy7yd"))))
|
||||||
|
(build-system node-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'patch-dependencies 'delete-dependencies
|
||||||
|
(lambda args
|
||||||
|
(delete-dependencies
|
||||||
|
'("bindings"
|
||||||
|
"commander"
|
||||||
|
"glob"
|
||||||
|
"request"
|
||||||
|
"node-gyp" ;; would be needed for tests
|
||||||
|
"tap"
|
||||||
|
"xtend")))))
|
||||||
|
;; tests need tap and other dependencies
|
||||||
|
#:tests? #f))
|
||||||
|
(inputs
|
||||||
|
(list node-readable-stream))
|
||||||
|
(home-page "https://github.com/nodejs/nan")
|
||||||
|
(synopsis "Native Abstractions for Node.js")
|
||||||
|
(description "Native Abstractions for Node.js (``NaN'') provides a header
|
||||||
|
file filled with macros and utilities for making add-on development for Node.js
|
||||||
|
easier across versions. The goal is to provide all logic necessary to develop
|
||||||
|
native Node.js addons without having to inspect @code{NODE_MODULE_VERSION}.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public node-normalize-path
|
(define-public node-normalize-path
|
||||||
(package
|
(package
|
||||||
(name "node-normalize-path")
|
(name "node-normalize-path")
|
||||||
|
@ -979,45 +1018,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-nan
|
|
||||||
(package
|
|
||||||
(name "node-nan")
|
|
||||||
(version "2.15.0")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/nodejs/nan")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32 "18xslh9va5ld872scrp5y4251ax9s3c6qh0lnl1200lpzbsxy7yd"))))
|
|
||||||
(build-system node-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-after 'patch-dependencies 'delete-dependencies
|
|
||||||
(lambda args
|
|
||||||
(delete-dependencies
|
|
||||||
'("bindings"
|
|
||||||
"commander"
|
|
||||||
"glob"
|
|
||||||
"request"
|
|
||||||
"node-gyp" ;; would be needed for tests
|
|
||||||
"tap"
|
|
||||||
"xtend")))))
|
|
||||||
;; tests need tap and other dependencies
|
|
||||||
#:tests? #f))
|
|
||||||
(inputs
|
|
||||||
(list node-readable-stream))
|
|
||||||
(home-page "https://github.com/nodejs/nan")
|
|
||||||
(synopsis "Native Abstractions for Node.js")
|
|
||||||
(description "Native Abstractions for Node.js (``NaN'') provides a header
|
|
||||||
file filled with macros and utilities for making add-on development for Node.js
|
|
||||||
easier across versions. The goal is to provide all logic necessary to develop
|
|
||||||
native Node.js addons without having to inspect @code{NODE_MODULE_VERSION}.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public node-addon-api
|
(define-public node-addon-api
|
||||||
(package
|
(package
|
||||||
(name "node-addon-api")
|
(name "node-addon-api")
|
||||||
|
|
Reference in New Issue