1 { lib, stdenv, fetchFromGitHub
2 , autoreconfHook, pkg-config
3 , liblxi, readline, lua
6 stdenv.mkDerivation rec {
10 src = fetchFromGitHub {
14 sha256 = "0rkp6ywsw2zv7hpbr12kba79wkcwqin7xagxxhd968rbfkfdxlwc";
17 nativeBuildInputs = [ autoreconfHook pkg-config ];
19 buildInputs = [ liblxi readline lua ];
22 description = "Tool for communicating with LXI compatible instruments";
24 lxi-tools is a collection of open source software tools
25 that enables control of LXI compatible instruments such
26 as modern oscilloscopes, power supplies,
27 spectrum analyzers etc.
29 homepage = "https://lxi-tools.github.io/";
30 license = licenses.bsd3;
31 platforms = platforms.linux;
32 maintainers = [ maintainers.vq ];