mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: node-serialport-bindings: Move package in alphabetical order.
* /gnu/packages/node-xyz.scm (node-serialport-bindings): Move package in alphabetical order. Change-Id: I8a232d2160191386c5cd4e41ce62c6e9bea030d7 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
e718c4a69f
commit
c4ea0a4114
1 changed files with 45 additions and 45 deletions
|
@ -1191,51 +1191,6 @@ (define-public node-serialport-binding-abstract
|
|||
SerialPort bindings. You wouldn't use this class directly, but instead extend
|
||||
it to make a new binding for a different platform or underling technology.")))
|
||||
|
||||
(define-public node-serialport-parser-delimiter
|
||||
(package
|
||||
(inherit node-serialport)
|
||||
(name "node-serialport-parser-delimiter")
|
||||
(version "9.2.4")
|
||||
(inputs `())
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'chdir
|
||||
(lambda args
|
||||
(chdir "packages/parser-delimiter"))))
|
||||
#:tests? #f))
|
||||
(synopsis "Node SerialPort parser to split data on a delimiter")
|
||||
(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{Delimiter}, a parser that emits data
|
||||
each time a specified byte sequence is received.")))
|
||||
|
||||
(define-public node-serialport-parser-readline
|
||||
(package
|
||||
(inherit node-serialport)
|
||||
(name "node-serialport-parser-readline")
|
||||
(version "9.2.4")
|
||||
(inputs
|
||||
(list node-serialport-parser-delimiter))
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'chdir
|
||||
(lambda args
|
||||
(chdir "packages/parser-readline"))))
|
||||
#:tests? #f))
|
||||
(synopsis "Node SerialPort parser to split data on newlines")
|
||||
(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{Readline}, a parser that emits data
|
||||
after a (configurable) newline delimiter is received.")))
|
||||
|
||||
(define-public node-serialport-bindings
|
||||
(package
|
||||
(inherit node-serialport)
|
||||
|
@ -1292,6 +1247,51 @@ (define-public node-serialport-bindings
|
|||
directly. There is also a @code{MockBinding} available (but not yet packaged
|
||||
for Guix) to assist with testing.")))
|
||||
|
||||
(define-public node-serialport-parser-delimiter
|
||||
(package
|
||||
(inherit node-serialport)
|
||||
(name "node-serialport-parser-delimiter")
|
||||
(version "9.2.4")
|
||||
(inputs `())
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'chdir
|
||||
(lambda args
|
||||
(chdir "packages/parser-delimiter"))))
|
||||
#:tests? #f))
|
||||
(synopsis "Node SerialPort parser to split data on a delimiter")
|
||||
(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{Delimiter}, a parser that emits data
|
||||
each time a specified byte sequence is received.")))
|
||||
|
||||
(define-public node-serialport-parser-readline
|
||||
(package
|
||||
(inherit node-serialport)
|
||||
(name "node-serialport-parser-readline")
|
||||
(version "9.2.4")
|
||||
(inputs
|
||||
(list node-serialport-parser-delimiter))
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'chdir
|
||||
(lambda args
|
||||
(chdir "packages/parser-readline"))))
|
||||
#:tests? #f))
|
||||
(synopsis "Node SerialPort parser to split data on newlines")
|
||||
(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{Readline}, a parser that emits data
|
||||
after a (configurable) newline delimiter is received.")))
|
||||
|
||||
(define-public node-serialport-parser-regex
|
||||
(package
|
||||
(inherit node-serialport)
|
||||
|
|
Loading…
Reference in a new issue