mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 22:50:23 -05:00
gnu: node-bindings: Move package in alphabetical order.
* gnu/packages/node-xyz.scm (node-bindings): Move package in alphabetical order. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
2f1ed825af
commit
aede3fa122
1 changed files with 25 additions and 25 deletions
|
@ -107,6 +107,31 @@ (define-public node-acorn
|
|||
architecture supporting plugins.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public node-bindings
|
||||
(package
|
||||
(name "node-bindings")
|
||||
(version "1.5.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/TooTallNate/node-bindings")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "100gp6kpjvd4j1dqnp0sbjr1hqx5mz7r61q9qy527jyhk9mj47wk"))))
|
||||
(inputs
|
||||
(list node-file-uri-to-path))
|
||||
(build-system node-build-system)
|
||||
(arguments
|
||||
;; there are no tests
|
||||
`(#:tests? #f))
|
||||
(home-page "https://github.com/TooTallNate/node-bindings")
|
||||
(synopsis "Locate native addons")
|
||||
(description "This package provides a helper module to locate native
|
||||
addons in a wide array of potential locations.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public node-buffer-crc32
|
||||
(package
|
||||
(name "node-buffer-crc32")
|
||||
|
@ -1258,31 +1283,6 @@ (define-public node-file-uri-to-path
|
|||
suitable for use with the @code{fs} module functions.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public node-bindings
|
||||
(package
|
||||
(name "node-bindings")
|
||||
(version "1.5.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/TooTallNate/node-bindings")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "100gp6kpjvd4j1dqnp0sbjr1hqx5mz7r61q9qy527jyhk9mj47wk"))))
|
||||
(inputs
|
||||
(list node-file-uri-to-path))
|
||||
(build-system node-build-system)
|
||||
(arguments
|
||||
;; there are no tests
|
||||
`(#:tests? #f))
|
||||
(home-page "https://github.com/TooTallNate/node-bindings")
|
||||
(synopsis "Locate native addons")
|
||||
(description "This package provides a helper module to locate native
|
||||
addons in a wide array of potential locations.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public node-segfault-handler
|
||||
(package
|
||||
(name "node-segfault-handler")
|
||||
|
|
Loading…
Reference in a new issue