gnu: Add liblxi.
* gnu/packages/hardware.scm (liblxi): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
44905f2795
commit
0fa6c6fdd3
1 changed files with 29 additions and 0 deletions
|
@ -44,6 +44,7 @@
|
||||||
#:use-module (gnu packages cdrom)
|
#:use-module (gnu packages cdrom)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages check)
|
#:use-module (gnu packages check)
|
||||||
|
#:use-module (gnu packages cmake)
|
||||||
#:use-module (gnu packages cpp)
|
#:use-module (gnu packages cpp)
|
||||||
#:use-module (gnu packages crypto)
|
#:use-module (gnu packages crypto)
|
||||||
#:use-module (gnu packages cups)
|
#:use-module (gnu packages cups)
|
||||||
|
@ -69,6 +70,7 @@
|
||||||
#:use-module (gnu packages ncurses)
|
#:use-module (gnu packages ncurses)
|
||||||
#:use-module (gnu packages networking)
|
#:use-module (gnu packages networking)
|
||||||
#:use-module (gnu packages openldap)
|
#:use-module (gnu packages openldap)
|
||||||
|
#:use-module (gnu packages onc-rpc)
|
||||||
#:use-module (gnu packages pciutils)
|
#:use-module (gnu packages pciutils)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
|
@ -1359,3 +1361,30 @@ and libtss2-tcti-mssim.")
|
||||||
string, code name and other information from x86 CPU. This library is not to be
|
string, code name and other information from x86 CPU. This library is not to be
|
||||||
confused with the @code{cpuid} command line utility from package @code{cpuid}.")
|
confused with the @code{cpuid} command line utility from package @code{cpuid}.")
|
||||||
(license license:bsd-2))))
|
(license license:bsd-2))))
|
||||||
|
|
||||||
|
(define-public liblxi
|
||||||
|
(package
|
||||||
|
(name "liblxi")
|
||||||
|
(version "1.18")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/lxi-tools/liblxi")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0cbnnd5qmchlr586349j5y4qv5w3bw9nmpbd3k6sq9vwvqh5dmns"))))
|
||||||
|
(build-system meson-build-system)
|
||||||
|
(native-inputs
|
||||||
|
(list cmake pkg-config))
|
||||||
|
(inputs
|
||||||
|
(list avahi libtirpc libxml2))
|
||||||
|
(home-page "https://lxi-tools.github.io/")
|
||||||
|
(synopsis "LAN eXtensions for Instrumentation library")
|
||||||
|
(description
|
||||||
|
"This package provides library for LAN eXtensions for Instrumentation
|
||||||
|
based on the LXI Consortium standard which defines the communication protocols
|
||||||
|
for modern instrumentation and data acquision systems using Ethernet.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
Reference in a new issue