at master 29 lines 674 B view raw
1{ 2 buildOctavePackage, 3 lib, 4 fetchurl, 5 optim, 6}: 7 8buildOctavePackage rec { 9 pname = "data-smoothing"; 10 version = "1.3.0"; 11 12 src = fetchurl { 13 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 14 sha256 = "0q0vqdmp8ygyfhk296xbxcpsh5wvpa2kfgv4v0rys68nd2lxfaq1"; 15 }; 16 17 requiredOctavePackages = [ 18 optim 19 ]; 20 21 meta = { 22 homepage = "https://gnu-octave.github.io/packages/data-smoothing/"; 23 license = lib.licenses.gpl3Plus; 24 maintainers = with lib.maintainers; [ KarlJoad ]; 25 description = "Algorithms for smoothing noisy data"; 26 # Hasn't been updated since 2012, and fails to build with octave >= 10.1.0 27 broken = true; 28 }; 29}