octave.pkgs.fuzzy-logic-toolkit: init at 0.4.5

This commit is contained in:
Karl Hallsby 2021-01-06 11:00:25 -06:00 committed by Doron Behar
parent ddabcd3b3a
commit 187ae71fd9
2 changed files with 23 additions and 0 deletions

View File

@ -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";
};
}

View File

@ -95,6 +95,8 @@ makeScope newScope (self:
fpl = callPackage ../development/octave-modules/fpl { };
fuzzy-logic-toolkit = callPackage ../development/octave-modules/fuzzy-logic-toolkit { };
general = callPackage ../development/octave-modules/general {
nettle = pkgs.nettle;
};