summary refs log tree commit diff
path: root/pkgs/development/octave-modules/bsltl
diff options
context:
space:
mode:
authorKarl Hallsby <karl@hallsby.com>2021-01-06 10:43:21 -0600
committerDoron Behar <doron.behar@gmail.com>2021-02-24 21:00:48 +0200
commitc4765ca49e3b1b6c5b6fc3fd5226de21db263559 (patch)
tree5e030082b937a768f46020bf564df74407726be4 /pkgs/development/octave-modules/bsltl
parent3cf6bd0e7011fafa0068be9e30f350298521f367 (diff)
octave.pkgs.bsltl: init at 1.3.1
Diffstat (limited to 'pkgs/development/octave-modules/bsltl')
-rw-r--r--pkgs/development/octave-modules/bsltl/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/octave-modules/bsltl/default.nix b/pkgs/development/octave-modules/bsltl/default.nix
new file mode 100644
index 0000000000000..aefe543b097d2
--- /dev/null
+++ b/pkgs/development/octave-modules/bsltl/default.nix
@@ -0,0 +1,21 @@
+{ buildOctavePackage
+, lib
+, fetchurl
+}:
+
+buildOctavePackage rec {
+  pname = "bsltl";
+  version = "1.3.1";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
+    sha256 = "0i8ry347y5f5db3702nhpsmfys9v18ks2fsmpdqpy3fcvrwaxdsb";
+  };
+
+  meta = with lib; {
+    homepage = "https://octave.sourceforge.io/bsltl/index.html";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ KarlJoad ];
+    description = "Free collection of OCTAVE/MATLAB routines for working with the biospeckle laser technique";
+  };
+}