summary refs log tree commit diff
path: root/pkgs/development/octave-modules/instrument-control
diff options
context:
space:
mode:
authorKarl Hallsby <karl@hallsby.com>2021-01-06 11:14:06 -0600
committerDoron Behar <doron.behar@gmail.com>2021-02-24 21:00:50 +0200
commitb9bdc30807e5eaa76cecd9a1efccecddfd0da742 (patch)
treebff7c4abacf87ee5278313a8ad685cc38113caea /pkgs/development/octave-modules/instrument-control
parentbb3295b87e69de4b2bef949d8379c22b5ba39458 (diff)
downloadnixpkgs-b9bdc30807e5eaa76cecd9a1efccecddfd0da742.tar
nixpkgs-b9bdc30807e5eaa76cecd9a1efccecddfd0da742.tar.gz
nixpkgs-b9bdc30807e5eaa76cecd9a1efccecddfd0da742.tar.bz2
nixpkgs-b9bdc30807e5eaa76cecd9a1efccecddfd0da742.tar.lz
nixpkgs-b9bdc30807e5eaa76cecd9a1efccecddfd0da742.tar.xz
nixpkgs-b9bdc30807e5eaa76cecd9a1efccecddfd0da742.tar.zst
nixpkgs-b9bdc30807e5eaa76cecd9a1efccecddfd0da742.zip
octave.pkgs.instrument-control: init at 0.6.0
Diffstat (limited to 'pkgs/development/octave-modules/instrument-control')
-rw-r--r--pkgs/development/octave-modules/instrument-control/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/octave-modules/instrument-control/default.nix b/pkgs/development/octave-modules/instrument-control/default.nix
new file mode 100644
index 00000000000..51c8f300cc5
--- /dev/null
+++ b/pkgs/development/octave-modules/instrument-control/default.nix
@@ -0,0 +1,21 @@
+{ buildOctavePackage
+, lib
+, fetchurl
+}:
+
+buildOctavePackage rec {
+  pname = "instrument-control";
+  version = "0.6.0";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
+    sha256 = "0vckax6rx5v3fq5j6kb6n39a5zas9i24x4wvmjlhc8xbykkg5nkk";
+  };
+
+  meta = with lib; {
+    homepage = "https://octave.sourceforge.io/instrument-control/index.html";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ KarlJoad ];
+    description = "Low level I/O functions for serial, i2c, spi, parallel, tcp, gpib, vxi11, udp and usbtmc interfaces";
+  };
+}