biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / octave-modules / instrument-control / default.nix
blobc975d49278ae95ce5640bea6600248fdd8c58dcd
1 { buildOctavePackage
2 , lib
3 , fetchurl
4 }:
6 buildOctavePackage rec {
7   pname = "instrument-control";
8   version = "0.9.3";
10   src = fetchurl {
11     url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
12     sha256 = "sha256-5ZufEs761qz0nKt0YYikJccqEtK+Qs9UcnJlRsW8VCM=";
13   };
15   meta = with lib; {
16     homepage = "https://octave.sourceforge.io/instrument-control/index.html";
17     license = licenses.gpl3Plus;
18     maintainers = with maintainers; [ KarlJoad ];
19     description = "Low level I/O functions for serial, i2c, spi, parallel, tcp, gpib, vxi11, udp and usbtmc interfaces";
20   };