octave.pkgs.matgeom: init at 1.2.2

This commit is contained in:
Karl Hallsby 2021-01-06 11:22:06 -06:00 committed by Doron Behar
parent c45836b1bb
commit a6314f4396
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,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";
};
}

View file

@ -136,6 +136,8 @@ makeScope newScope (self:
mapping = callPackage ../development/octave-modules/mapping { };
matgeom = callPackage ../development/octave-modules/matgeom { };
signal = callPackage ../development/octave-modules/signal { };
symbolic = callPackage ../development/octave-modules/symbolic {