1{
2 buildOctavePackage,
3 lib,
4 fetchurl,
5}:
6
7buildOctavePackage rec {
8 pname = "bsltl";
9 version = "1.3.1";
10
11 src = fetchurl {
12 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
13 sha256 = "0i8ry347y5f5db3702nhpsmfys9v18ks2fsmpdqpy3fcvrwaxdsb";
14 };
15
16 meta = {
17 homepage = "https://gnu-octave.github.io/packages/bsltl/";
18 license = lib.licenses.gpl3Plus;
19 maintainers = with lib.maintainers; [ KarlJoad ];
20 description = "Free collection of OCTAVE/MATLAB routines for working with the biospeckle laser technique";
21 };
22}