24 lines
584 B
Nix
24 lines
584 B
Nix
{
|
|
buildOctavePackage,
|
|
lib,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildOctavePackage rec {
|
|
pname = "fuzzy-logic-toolkit";
|
|
version = "0.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lmarkowsky";
|
|
repo = "fuzzy-logic-toolkit";
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "sha256-lnYzX4rq3j7rrbD8m0EnrWpbMJD6tqtMVCYu4mlLFCM=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/lmarkowsky/fuzzy-logic-toolkit";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ KarlJoad ];
|
|
description = "Mostly MATLAB-compatible fuzzy logic toolkit for Octave";
|
|
};
|
|
}
|