gnu: node-serialport-parser-ready: Move in alphabetical order.

* gnu/packages/node-xyz.scm (node-serialport-parser-ready): Move
package in alphabetical order.

Change-Id: I4d16d0ea922cfdd5fde4f055200645dee4110036
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves 2024-02-19 01:11:09 +01:00 committed by Sharlatan Hellseher
parent 5b2f6a497f
commit a78a1fc3f0
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1337,28 +1337,6 @@ (define-public node-serialport-parser-readline
messages. This package provides @code{Readline}, a parser that emits data
after a (configurable) newline delimiter is received.")))
(define-public node-serialport-parser-regex
(package
(inherit node-serialport)
(name "node-serialport-parser-regex")
(version "9.2.4")
(inputs `())
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'chdir
(lambda args
(chdir "packages/parser-regex"))))
#:tests? #f))
(synopsis "Node SerialPort parser to split data on a regular expression")
(description "Node SerialPort is a modular suite of Node.js packages for
accessing serial ports. The Guix package @code{node-serialport} provides the
recommended high-level interface.
Parsers are used to take raw binary data and transform them into usable
messages. This package provides @code{Regex}, a parser that uses a regular
expression to split the incoming text.")))
(define-public node-serialport-parser-ready
(package
(inherit node-serialport)
@ -1382,6 +1360,28 @@ (define-public node-serialport-parser-ready
specified sequence of ``ready'' bytes before emitting a ready event and
emitting data events.")))
(define-public node-serialport-parser-regex
(package
(inherit node-serialport)
(name "node-serialport-parser-regex")
(version "9.2.4")
(inputs `())
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'chdir
(lambda args
(chdir "packages/parser-regex"))))
#:tests? #f))
(synopsis "Node SerialPort parser to split data on a regular expression")
(description "Node SerialPort is a modular suite of Node.js packages for
accessing serial ports. The Guix package @code{node-serialport} provides the
recommended high-level interface.
Parsers are used to take raw binary data and transform them into usable
messages. This package provides @code{Regex}, a parser that uses a regular
expression to split the incoming text.")))
(define-public node-serialport-parser-inter-byte-timeout
(package
(inherit node-serialport)