octave.pkgs.data-smoothing: init at 1.3.0
This commit is contained in:
parent
0abd2425c7
commit
f4298212c0
|
@ -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";
|
||||||
|
};
|
||||||
|
}
|
|
@ -69,6 +69,12 @@ makeScope newScope (self:
|
||||||
|
|
||||||
control = callPackage ../development/octave-modules/control { };
|
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 {
|
io = callPackage ../development/octave-modules/io {
|
||||||
inherit (octave) enableJava;
|
inherit (octave) enableJava;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue