Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildOctavePackage, 3 lib, 4 fetchurl, 5}: 6 7buildOctavePackage rec { 8 pname = "lssa"; 9 version = "0.1.4"; 10 11 src = fetchurl { 12 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 13 sha256 = "10h9lzsi7pqh93i7y50b618g05fnbw9n0i505bz5kz4avfa990zh"; 14 }; 15 16 meta = { 17 homepage = "https://gnu-octave.github.io/packages/lssa/"; 18 license = lib.licenses.gpl3Plus; 19 maintainers = with lib.maintainers; [ KarlJoad ]; 20 description = "Tools to compute spectral decompositions of irregularly-spaced time series"; 21 longDescription = '' 22 A package implementing tools to compute spectral decompositions of 23 irregularly-spaced time series. Currently includes functions based off 24 the Lomb-Scargle periodogram and Adolf Mathias' implementation for R 25 and C. 26 ''; 27 }; 28}