octave.pkgs.data-smoothing: init at 1.3.0

This commit is contained in:
Karl Hallsby 2021-01-06 10:46:10 -06:00 committed by Doron Behar
parent 0abd2425c7
commit f4298212c0
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ buildOctavePackage
, lib
, fetchurl
, optim
}:
buildOctavePackage rec {
pname = "data-smoothing";
version = "1.3.0";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "0q0vqdmp8ygyfhk296xbxcpsh5wvpa2kfgv4v0rys68nd2lxfaq1";
};
requiredOctavePackages = [
optim
];
meta = with lib; {
homepage = "https://octave.sourceforge.io/data-smoothing/index.html";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ KarlJoad ];
description = "Algorithms for smoothing noisy data";
};
}

View file

@ -69,6 +69,12 @@ makeScope newScope (self:
control = callPackage ../development/octave-modules/control { };
data-smoothing = callPackage ../development/octave-modules/data-smoothing { };
general = callPackage ../development/octave-modules/general {
nettle = pkgs.nettle;
};
io = callPackage ../development/octave-modules/io {
inherit (octave) enableJava;
};