biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / octave-modules / matgeom / default.nix
blobc74b8b00cfbeff749ca25ed126dcd0b15c51eb46
1 { buildOctavePackage
2 , lib
3 , fetchurl
4 }:
6 buildOctavePackage rec {
7   pname = "matgeom";
8   version = "1.2.3";
10   src = fetchurl {
11     url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
12     sha256 = "12q66dy4ninhki3jslzcamfblcb3cdkfbbzn3a5har1s212lsfiw";
13   };
15   meta = with lib; {
16     homepage = "https://octave.sourceforge.io/matgeom/index.html";
17     license = with licenses; [ bsd2 gpl3Plus ];
18     maintainers = with maintainers; [ KarlJoad ];
19     description = "Geometry toolbox for 2D/3D geometric computing";
20   };