Advertisement
ecbrown

lxi-tools.scm

Aug 18th, 2019
573
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 1.03 KB | None | 0 0
  1. (use-modules (guix build-system gnu)
  2.              (guix download)
  3.              (guix git-download)
  4.              (guix licenses)
  5.              (guix packages))
  6.  
  7. (define-public liblxi
  8.   (package
  9.     (name "liblxi")
  10.     (version "1.13")
  11.     (source (origin
  12.               (method git-fetch)
  13.               (uri (git-reference
  14.                     (url "https://github.com/lxi-tools/liblxi")
  15.                     (commit (string-append "v" version))))
  16.               (file-name (git-file-name name version))
  17.               (sha256
  18.                (base32
  19.                 "1v2slmmr1dsgf8z0qcfg1y9x1al96859rg48b66p9nsawczd5zv9"))))
  20.     (build-system gnu-build-system)
  21.     (synopsis "Library for communication with LXI compatible devices")
  22.     (description
  23.      "liblxi is an open source software library which offers a simple API for
  24. communicating with LXI compatible instruments. The API allows applications to
  25. discover instruments on your network, send SCPI commands, and receive
  26. responses.")
  27.     (home-page "https://lxi-tools.github.io/")
  28.     (license non-copyleft)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement