My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/octave-modules/fuzzy-logic-toolkit/default.nix

21 lines
553 B

{ buildOctavePackage
, lib
, fetchurl
}:
buildOctavePackage rec {
pname = "fuzzy-logic-toolkit";
version = "0.4.6";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "126x0wjjqmwwgynsgjfdh5rlnww5bsl5hxq1xib15i58mrglh5cd";
};
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";
};
}