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