diff options
author | Philip McGrath <philip@philipmcgrath.com> | 2022-01-08 03:42:20 -0500 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2022-01-09 02:07:16 +0100 |
commit | e2dee179efe4d401191cff8e9eb541445c59120e (patch) | |
tree | 8009e436dcaf85f3f0309b93d77abab0ba5adbe1 /gnu | |
parent | fa9bc626c8ade896421aa137964c1ff987ed34af (diff) | |
download | guix-e2dee179efe4d401191cff8e9eb541445c59120e.tar.gz |
gnu: Add node-serialport-parser-delimiter.
* gnu/packages/node-xyz.scm (node-serialport-parser-delimiter): New variable. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/node-xyz.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm index 090468ab40..dbc2a40794 100644 --- a/gnu/packages/node-xyz.scm +++ b/gnu/packages/node-xyz.scm @@ -1031,3 +1031,25 @@ This package provides the @code{AbstractBinding} class, the base for all Node 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.") (license license:expat))) + +(define-public node-serialport-parser-delimiter + (package + (inherit node-serialport-binding-abstract) + (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."))) |