mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add node-util-deprecate.
* gnu/packages/node-xyz.scm (node-util-deprecate): New variable.
This commit is contained in:
parent
c8bbff7ee1
commit
d1095c47f1
1 changed files with 22 additions and 0 deletions
|
@ -112,3 +112,25 @@ (define-public node-statsd-parser
|
|||
(description "This package provides a streaming parser for the statsd
|
||||
protocol used in @code{node-lynx}.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public node-util-deprecate
|
||||
(package
|
||||
(name "node-util-deprecate")
|
||||
(version "1.0.2")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/TooTallNate/util-deprecate")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1rk94nl3qc7znsk8400bnga30v0m7j2mmvz9ldwjinxv1d3n11xc"))))
|
||||
(build-system node-build-system)
|
||||
(arguments '(#:tests? #f)) ; No test suite.
|
||||
(home-page "https://github.com/TooTallNate/util-deprecate")
|
||||
(synopsis "Node.js `util.deprecate()` function with browser support")
|
||||
(description "This package provides the Node.js @code{util.deprecate()}
|
||||
function with browser support.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue