mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: Add libmodbus.
* gnu/packages/engineering.scm (libmodbus): New variable. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
cd3a539455
commit
a1a952a38c
1 changed files with 21 additions and 0 deletions
|
@ -1557,6 +1557,27 @@ (define-public sterm
|
|||
(home-page "https://github.com/wentasah/sterm")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public libmodbus
|
||||
(package
|
||||
(name "libmodbus")
|
||||
(version "3.1.10")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/stephane/libmodbus")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0nbpk1n56kclab8fl32dxi46v2bwax3gfk1zkc796srm7vj42sbv"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs (list autoconf automake libtool))
|
||||
(synopsis "Library for the Modbus protocol")
|
||||
(description "@code{libmodbus} is a library to send/receive data with a
|
||||
device which respects the Modbus protocol. This library can use a serial port
|
||||
or an Ethernet connection.")
|
||||
(home-page "https://libmodbus.org/")
|
||||
(license license:lgpl2.1+)))
|
||||
(define-public harminv
|
||||
(package
|
||||
(name "harminv")
|
||||
|
|
Loading…
Reference in a new issue