Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildOctavePackage 2, lib 3, fetchurl 4}: 5 6buildOctavePackage 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}