nixpkgs/pkgs/development/libraries/librevisa/default.nix

32 lines
964 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, libusb1 }:
# TODO: add VXI development files, for VXI-11 (TCPIP) support
stdenv.mkDerivation rec {
2021-06-22 13:21:29 +00:00
pname = "librevisa";
version = "0.0.20130412";
src = fetchurl {
2021-06-22 13:21:29 +00:00
url = "http://www.librevisa.org/download/${pname}-${version}.tar.gz";
sha256 = "0bjzq23s3xzw0l9qx4l8achrx5id8xdd6r52lvdl4a28dxzbcfhq";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libusb1 ];
meta = with lib; {
description = "Implementation of the VISA standard (for instrument control)";
longDescription = ''
LibreVISA aims to be a compliant implementation of the VISA standard in a
free software library.
We currently support targets connected via USB, exposing the USBTMC
interface, and VXI-11 devices.
'';
homepage = "http://www.librevisa.org/";
license = licenses.gpl3Plus;
2019-06-05 23:05:21 +00:00
platforms = platforms.linux ++ platforms.darwin;
maintainers = [ maintainers.bjornfor ];
};
}