biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / octave-modules / linear-algebra / default.nix
blob18818c1db606472954c9634a7fae217a4e9c30a6
1 { buildOctavePackage
2 , lib
3 , fetchurl
4 }:
6 buildOctavePackage rec {
7   pname = "linear-algebra";
8   version = "2.2.3";
10   src = fetchurl {
11     url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
12     sha256 = "1wwjpxp9vjc6lszh0z3kgy4hyzpib8rvvh6b74ijh9qk9r9nmvjk";
13   };
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   };