gnu: Add node-serialport-stream.

* gnu/packages/node-xyz.scm (node-serialport-stream): New variable.

Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
Philip McGrath 2022-01-08 03:42:28 -05:00 committed by Liliana Marie Prikler
parent 8ff1e9adc2
commit 84e811ca0f
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -1242,3 +1242,31 @@ (define-public node-serialport-parser-byte-length
Parsers are used to take raw binary data and transform them into usable
messages. This package provides @code{ByteLength}, a parser that emits data
as a buffer every time a specified number of bytes are received.")))
(define-public node-serialport-stream
(package
(inherit node-serialport-binding-abstract)
(name "node-serialport-stream")
(version "9.2.4")
(inputs
(list node-debug))
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'patch-dependencies 'delete-dependencies
(lambda args
(delete-dependencies `(;; devDependencies
"@serialport/binding-mock"))))
(add-after 'unpack 'chdir
(lambda args
(chdir "packages/stream"))))
#:tests? #f))
(synopsis "Node.js stream interface for Node SerialPort")
(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.
This package provides an interface for using Node SerialPort bindings via the
Node.js Stream API. The stream is a duplex stream, allowing for reading and
writing. It has additional methods for managing the SerialPort
connection.")))