···11+{ buildOctavePackage
22+, lib
33+, fetchurl
44+}:
55+66+buildOctavePackage rec {
77+ pname = "lssa";
88+ version = "0.1.4";
99+1010+ src = fetchurl {
1111+ url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
1212+ sha256 = "10h9lzsi7pqh93i7y50b618g05fnbw9n0i505bz5kz4avfa990zh";
1313+ };
1414+1515+ meta = with lib; {
1616+ homepage = "https://octave.sourceforge.io/lssa/index.html";
1717+ license = licenses.gpl3Plus;
1818+ maintainers = with maintainers; [ KarlJoad ];
1919+ description = "Tools to compute spectral decompositions of irregularly-spaced time series";
2020+ longDescription = ''
2121+ A package implementing tools to compute spectral decompositions of
2222+ irregularly-spaced time series. Currently includes functions based off
2323+ the Lomb-Scargle periodogram and Adolf Mathias' implementation for R
2424+ and C.
2525+ '';
2626+ };
2727+}