summary refs log tree commit diff
path: root/pkgs/development/octave-modules/matgeom/default.nix
blob: c74b8b00cfbeff749ca25ed126dcd0b15c51eb46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ buildOctavePackage
, lib
, fetchurl
}:

buildOctavePackage rec {
  pname = "matgeom";
  version = "1.2.3";

  src = fetchurl {
    url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
    sha256 = "12q66dy4ninhki3jslzcamfblcb3cdkfbbzn3a5har1s212lsfiw";
  };

  meta = with lib; {
    homepage = "https://octave.sourceforge.io/matgeom/index.html";
    license = with licenses; [ bsd2 gpl3Plus ];
    maintainers = with maintainers; [ KarlJoad ];
    description = "Geometry toolbox for 2D/3D geometric computing";
  };
}