lol

octave.pkgs.lssa: init at 0.1.4

authored by

Karl Hallsby and committed by
Doron Behar
0b7b03d6 31c13c07

+29
+27
pkgs/development/octave-modules/lssa/default.nix
··· 1 + { buildOctavePackage 2 + , lib 3 + , fetchurl 4 + }: 5 + 6 + buildOctavePackage rec { 7 + pname = "lssa"; 8 + version = "0.1.4"; 9 + 10 + src = fetchurl { 11 + url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 12 + sha256 = "10h9lzsi7pqh93i7y50b618g05fnbw9n0i505bz5kz4avfa990zh"; 13 + }; 14 + 15 + meta = with lib; { 16 + homepage = "https://octave.sourceforge.io/lssa/index.html"; 17 + license = licenses.gpl3Plus; 18 + maintainers = with maintainers; [ KarlJoad ]; 19 + description = "Tools to compute spectral decompositions of irregularly-spaced time series"; 20 + longDescription = '' 21 + A package implementing tools to compute spectral decompositions of 22 + irregularly-spaced time series. Currently includes functions based off 23 + the Lomb-Scargle periodogram and Adolf Mathias' implementation for R 24 + and C. 25 + ''; 26 + }; 27 + }
+2
pkgs/top-level/octave-packages.nix
··· 127 127 128 128 linear-algebra = callPackage ../development/octave-modules/linear-algebra { }; 129 129 130 + lssa = callPackage ../development/octave-modules/lssa { }; 131 + 130 132 ltfat = callPackage ../development/octave-modules/ltfat { 131 133 inherit (octave) fftw fftwSinglePrec portaudio jdk; 132 134 inherit (pkgs) fftwFloat fftwLongDouble;