mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +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
|
||||
, lib
|
||||
, fetchurl
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildOctavePackage rec {
|
||||
pname = "fuzzy-logic-toolkit";
|
||||
version = "0.4.6";
|
||||
version = "0.6.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
||||
sha256 = "126x0wjjqmwwgynsgjfdh5rlnww5bsl5hxq1xib15i58mrglh5cd";
|
||||
src = fetchFromGitHub {
|
||||
owner = "lmarkowsky";
|
||||
repo = "fuzzy-logic-toolkit";
|
||||
rev = "refs/tags/${version}";
|
||||
sha256 = "sha256-veU+3DPFJ2IeGw5PkpxGO8Oo9qEyR890hs4IAzbfxls=";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://octave.sourceforge.io/fuzzy-logic-toolkit/index.html";
|
||||
homepage = "https://github.com/lmarkowsky/fuzzy-logic-toolkit";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ KarlJoad ];
|
||||
description = "Mostly MATLAB-compatible fuzzy logic toolkit for Octave";
|
||||
|
Loading…
Reference in New Issue
Block a user