mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
Merge pull request #330534 from KarlJoad/octavePackages/fuzzy-logic-toolkit-update
octavePackages.fuzzy-logic-toolkit: 0.4.6 -> 0.6.0
This commit is contained in:
commit
785feb9118
@ -1,19 +1,21 @@
|
|||||||
{ buildOctavePackage
|
{ buildOctavePackage
|
||||||
, lib
|
, lib
|
||||||
, fetchurl
|
, fetchFromGitHub
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildOctavePackage rec {
|
buildOctavePackage rec {
|
||||||
pname = "fuzzy-logic-toolkit";
|
pname = "fuzzy-logic-toolkit";
|
||||||
version = "0.4.6";
|
version = "0.6.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
owner = "lmarkowsky";
|
||||||
sha256 = "126x0wjjqmwwgynsgjfdh5rlnww5bsl5hxq1xib15i58mrglh5cd";
|
repo = "fuzzy-logic-toolkit";
|
||||||
|
rev = "refs/tags/${version}";
|
||||||
|
sha256 = "sha256-veU+3DPFJ2IeGw5PkpxGO8Oo9qEyR890hs4IAzbfxls=";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://octave.sourceforge.io/fuzzy-logic-toolkit/index.html";
|
homepage = "https://github.com/lmarkowsky/fuzzy-logic-toolkit";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = with maintainers; [ KarlJoad ];
|
maintainers = with maintainers; [ KarlJoad ];
|
||||||
description = "Mostly MATLAB-compatible fuzzy logic toolkit for Octave";
|
description = "Mostly MATLAB-compatible fuzzy logic toolkit for Octave";
|
||||||
|
Loading…
Reference in New Issue
Block a user