nixpkgs/pkgs/development/libraries/librevisa/default.nix
Jonathan Ringer 9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
continuation of #109595

pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.

python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -08:00

31 lines
938 B
Nix

{ stdenv, fetchurl, pkg-config, libusb1 }:
# TODO: add VXI development files, for VXI-11 (TCPIP) support
stdenv.mkDerivation rec {
name = "librevisa-0.0.20130412";
src = fetchurl {
url = "http://www.librevisa.org/download/${name}.tar.gz";
sha256 = "0bjzq23s3xzw0l9qx4l8achrx5id8xdd6r52lvdl4a28dxzbcfhq";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libusb1 ];
meta = with stdenv.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;
platforms = platforms.linux ++ platforms.darwin;
maintainers = [ maintainers.bjornfor ];
};
}