lxi-tools: init at 1.21

Apply suggestions from code review

Co-authored-by: Ivar <41924494+IvarWithoutBones@users.noreply.github.com>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Daniel Nilsson 2020-12-18 21:58:43 +01:00
parent 5c56cfd61b
commit 143091fae6
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ stdenv, fetchFromGitHub
, autoreconfHook, pkg-config
, liblxi, readline, lua
}:
stdenv.mkDerivation rec {
pname = "lxi-tools";
version = "1.21";
src = fetchFromGitHub {
owner = "lxi-tools";
repo = "lxi-tools";
rev = "v${version}";
sha256 = "0rkp6ywsw2zv7hpbr12kba79wkcwqin7xagxxhd968rbfkfdxlwc";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ liblxi readline lua ];
meta = with stdenv.lib; {
description = "Tool for communicating with LXI compatible instruments";
longDescription = ''
lxi-tools is a collection of open source software tools
that enables control of LXI compatible instruments such
as modern oscilloscopes, power supplies,
spectrum analyzers etc.
'';
homepage = "https://lxi-tools.github.io/";
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = [ maintainers.vq ];
};
}

View file

@ -23323,6 +23323,8 @@ in
lv2-cpp-tools = callPackage ../applications/audio/lv2-cpp-tools { };
lxi-tools = callPackage ../tools/networking/lxi-tools { };
lynx = callPackage ../applications/networking/browsers/lynx { };
lyrebird = callPackage ../applications/audio/lyrebird { };