mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
22 lines
487 B
Nix
22 lines
487 B
Nix
{ buildOctavePackage
|
|
, lib
|
|
, fetchurl
|
|
}:
|
|
|
|
buildOctavePackage rec {
|
|
pname = "ga";
|
|
version = "0.10.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-hsrjh2rZFhP6WA+qaKjiGfJkDtT2nTlXlKr3jAJ5Y44=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://octave.sourceforge.io/ga/index.html";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ KarlJoad ];
|
|
description = "Genetic optimization code";
|
|
};
|
|
}
|