summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/hardware.scm29
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/hardware.scm b/gnu/packages/hardware.scm
index 299d7b96a14..fdb7be31851 100644
--- a/gnu/packages/hardware.scm
+++ b/gnu/packages/hardware.scm
@@ -44,6 +44,7 @@
44 #:use-module (gnu packages cdrom) 44 #:use-module (gnu packages cdrom)
45 #:use-module (gnu packages compression) 45 #:use-module (gnu packages compression)
46 #:use-module (gnu packages check) 46 #:use-module (gnu packages check)
47 #:use-module (gnu packages cmake)
47 #:use-module (gnu packages cpp) 48 #:use-module (gnu packages cpp)
48 #:use-module (gnu packages crypto) 49 #:use-module (gnu packages crypto)
49 #:use-module (gnu packages cups) 50 #:use-module (gnu packages cups)
@@ -69,6 +70,7 @@
69 #:use-module (gnu packages ncurses) 70 #:use-module (gnu packages ncurses)
70 #:use-module (gnu packages networking) 71 #:use-module (gnu packages networking)
71 #:use-module (gnu packages openldap) 72 #:use-module (gnu packages openldap)
73 #:use-module (gnu packages onc-rpc)
72 #:use-module (gnu packages pciutils) 74 #:use-module (gnu packages pciutils)
73 #:use-module (gnu packages perl) 75 #:use-module (gnu packages perl)
74 #:use-module (gnu packages pkg-config) 76 #:use-module (gnu packages pkg-config)
@@ -1359,3 +1361,30 @@ and libtss2-tcti-mssim.")
1359string, code name and other information from x86 CPU. This library is not to be 1361string, code name and other information from x86 CPU. This library is not to be
1360confused with the @code{cpuid} command line utility from package @code{cpuid}.") 1362confused with the @code{cpuid} command line utility from package @code{cpuid}.")
1361 (license license:bsd-2)))) 1363 (license license:bsd-2))))
1364
1365(define-public liblxi
1366 (package
1367 (name "liblxi")
1368 (version "1.18")
1369 (source
1370 (origin
1371 (method git-fetch)
1372 (uri (git-reference
1373 (url "https://github.com/lxi-tools/liblxi")
1374 (commit (string-append "v" version))))
1375 (file-name (git-file-name name version))
1376 (sha256
1377 (base32
1378 "0cbnnd5qmchlr586349j5y4qv5w3bw9nmpbd3k6sq9vwvqh5dmns"))))
1379 (build-system meson-build-system)
1380 (native-inputs
1381 (list cmake pkg-config))
1382 (inputs
1383 (list avahi libtirpc libxml2))
1384 (home-page "https://lxi-tools.github.io/")
1385 (synopsis "LAN eXtensions for Instrumentation library")
1386 (description
1387 "This package provides library for LAN eXtensions for Instrumentation
1388based on the LXI Consortium standard which defines the communication protocols
1389for modern instrumentation and data acquision systems using Ethernet.")
1390 (license license:bsd-3)))