octave.pkgs.fuzzy-logic-toolkit: init at 0.4.5
This commit is contained in:
parent
ddabcd3b3a
commit
187ae71fd9
|
@ -0,0 +1,21 @@
|
||||||
|
{ buildOctavePackage
|
||||||
|
, lib
|
||||||
|
, fetchurl
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildOctavePackage rec {
|
||||||
|
pname = "fuzzy-logic-toolkit";
|
||||||
|
version = "0.4.5";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
||||||
|
sha256 = "0cs1xh594h1psdinicxrsvm27gzax5jja7bjk4sl3kk2hv24mhml";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://octave.sourceforge.io/fuzzy-logic-toolkit/index.html";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
maintainers = with maintainers; [ KarlJoad ];
|
||||||
|
description = "A mostly MATLAB-compatible fuzzy logic toolkit for Octave";
|
||||||
|
};
|
||||||
|
}
|
|
@ -95,6 +95,8 @@ makeScope newScope (self:
|
||||||
|
|
||||||
fpl = callPackage ../development/octave-modules/fpl { };
|
fpl = callPackage ../development/octave-modules/fpl { };
|
||||||
|
|
||||||
|
fuzzy-logic-toolkit = callPackage ../development/octave-modules/fuzzy-logic-toolkit { };
|
||||||
|
|
||||||
general = callPackage ../development/octave-modules/general {
|
general = callPackage ../development/octave-modules/general {
|
||||||
nettle = pkgs.nettle;
|
nettle = pkgs.nettle;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue