octave.pkgs.ga: init at 0.10.2
This commit is contained in:
parent
187ae71fd9
commit
0b1f57bb9e
21
pkgs/development/octave-modules/ga/default.nix
Normal file
21
pkgs/development/octave-modules/ga/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ buildOctavePackage
|
||||
, lib
|
||||
, fetchurl
|
||||
}:
|
||||
|
||||
buildOctavePackage rec {
|
||||
pname = "ga";
|
||||
version = "0.10.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
||||
sha256 = "0s5azn4n174avlmh5gw21zfqfkyxkzn4v09q4l9swv7ldmg3mirv";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://octave.sourceforge.io/ga/index.html";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ KarlJoad ];
|
||||
description = "Genetic optimization code";
|
||||
};
|
||||
}
|
@ -97,6 +97,8 @@ makeScope newScope (self:
|
||||
|
||||
fuzzy-logic-toolkit = callPackage ../development/octave-modules/fuzzy-logic-toolkit { };
|
||||
|
||||
ga = callPackage ../development/octave-modules/ga { };
|
||||
|
||||
general = callPackage ../development/octave-modules/general {
|
||||
nettle = pkgs.nettle;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user