gnu: node-ieee754: Move package in alphabetical order.
* gnu/packages/node-xyz.scm (node-ieee754): Move package in alphabetical order. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
466fe22a89
commit
49bb13b0a7
1 changed files with 26 additions and 26 deletions
|
@ -301,6 +301,32 @@ projects under a given directory. It uses the gradle wrapper to execute the
|
||||||
clean task of each project.")
|
clean task of each project.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public node-ieee754
|
||||||
|
(package
|
||||||
|
(name "node-ieee754")
|
||||||
|
(version "1.2.1")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/feross/ieee754")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"19rlg59lavnwsvbblhvrqwinz2wzqlxhddqpwrc3cyqkscjgza7i"))))
|
||||||
|
(build-system node-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:tests? #f
|
||||||
|
#:phases (modify-phases %standard-phases
|
||||||
|
(add-after 'patch-dependencies 'delete-dependencies
|
||||||
|
(lambda _
|
||||||
|
(delete-dependencies '("airtap" "standard" "tape")))))))
|
||||||
|
(home-page "https://github.com/feross/ieee754")
|
||||||
|
(synopsis "Read/write IEEE754 floating point numbers in Javascript")
|
||||||
|
(description "This package can read and write IEEE754 floating point
|
||||||
|
numbers from/to a Buffer or array-like object in Javascript.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public node-long-stack-traces
|
(define-public node-long-stack-traces
|
||||||
(package
|
(package
|
||||||
(name "node-long-stack-traces")
|
(name "node-long-stack-traces")
|
||||||
|
@ -753,32 +779,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-ieee754
|
|
||||||
(package
|
|
||||||
(name "node-ieee754")
|
|
||||||
(version "1.2.1")
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/feross/ieee754")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"19rlg59lavnwsvbblhvrqwinz2wzqlxhddqpwrc3cyqkscjgza7i"))))
|
|
||||||
(build-system node-build-system)
|
|
||||||
(arguments
|
|
||||||
'(#:tests? #f
|
|
||||||
#:phases (modify-phases %standard-phases
|
|
||||||
(add-after 'patch-dependencies 'delete-dependencies
|
|
||||||
(lambda _
|
|
||||||
(delete-dependencies '("airtap" "standard" "tape")))))))
|
|
||||||
(home-page "https://github.com/feross/ieee754")
|
|
||||||
(synopsis "Read/write IEEE754 floating point numbers in Javascript")
|
|
||||||
(description "This package can read and write IEEE754 floating point
|
|
||||||
numbers from/to a Buffer or array-like object in Javascript.")
|
|
||||||
(license license:bsd-3)))
|
|
||||||
|
|
||||||
(define-public node-inherits
|
(define-public node-inherits
|
||||||
(package
|
(package
|
||||||
(name "node-inherits")
|
(name "node-inherits")
|
||||||
|
|
Reference in a new issue