lol

octave.pkgs.linear-algebra: init at 2.2.3

authored by

Karl Hallsby and committed by
Doron Behar
77fdefa2 c45d56ab

+22
+22
pkgs/development/octave-modules/linear-algebra/default.nix
··· 1 + { buildOctavePackage 2 + , lib 3 + , fetchurl 4 + }: 5 + 6 + buildOctavePackage rec { 7 + pname = "linear-algebra"; 8 + version = "2.2.3"; 9 + 10 + src = fetchurl { 11 + url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 12 + sha256 = "1wwjpxp9vjc6lszh0z3kgy4hyzpib8rvvh6b74ijh9qk9r9nmvjk"; 13 + }; 14 + 15 + meta = with lib; { 16 + homepage = "https://octave.sourceforge.io/linear-algebra/index.html"; 17 + license = with licenses; [ gpl3Plus lgpl3Plus ]; 18 + # They claim to have a FreeBSD license, but none of their code seems to have it. 19 + maintainers = with maintainers; [ KarlJoad ]; 20 + description = "Additional linear algebra code, including matrix functions"; 21 + }; 22 + }