summary refs log tree commit diff
path: root/pkgs/development/octave-modules/matgeom/default.nix
blob: b8607cf5dff931c9be710d52e2bde59f2905bd5e (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.2";

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

  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";
  };
}