diff options
| author | Petr Hodina <phodina@protonmail.com> | 2022-12-03 10:21:12 +0100 |
|---|---|---|
| committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-04-23 19:00:54 +0200 |
| commit | 0fa6c6fdd3f4df52fcce27e139da65cd06bccc15 (patch) | |
| tree | 9c46b9ee5c3504c367237b4b524b9a379335d577 /gnu/packages/hardware.scm | |
| parent | 44905f2795a83a4e4f7d80700497c09f2e9fef3a (diff) | |
gnu: Add liblxi.
* gnu/packages/hardware.scm (liblxi): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu/packages/hardware.scm')
| -rw-r--r-- | gnu/packages/hardware.scm | 29 |
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.") | |||
| 1359 | string, code name and other information from x86 CPU. This library is not to be | 1361 | string, code name and other information from x86 CPU. This library is not to be |
| 1360 | confused with the @code{cpuid} command line utility from package @code{cpuid}.") | 1362 | confused 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 | ||
| 1388 | based on the LXI Consortium standard which defines the communication protocols | ||
| 1389 | for modern instrumentation and data acquision systems using Ethernet.") | ||
| 1390 | (license license:bsd-3))) | ||
