nixpkgs/pkgs/development/octave-modules/ga/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
488 B
Nix
Raw Normal View History

2021-01-06 17:01:13 +00:00
{ 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";
};
}