octave.pkgs.matgeom: init at 1.2.2
This commit is contained in:
parent
c45836b1bb
commit
a6314f4396
|
@ -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";
|
||||||
|
};
|
||||||
|
}
|
|
@ -136,6 +136,8 @@ makeScope newScope (self:
|
||||||
|
|
||||||
mapping = callPackage ../development/octave-modules/mapping { };
|
mapping = callPackage ../development/octave-modules/mapping { };
|
||||||
|
|
||||||
|
matgeom = callPackage ../development/octave-modules/matgeom { };
|
||||||
|
|
||||||
signal = callPackage ../development/octave-modules/signal { };
|
signal = callPackage ../development/octave-modules/signal { };
|
||||||
|
|
||||||
symbolic = callPackage ../development/octave-modules/symbolic {
|
symbolic = callPackage ../development/octave-modules/symbolic {
|
||||||
|
|
Loading…
Reference in New Issue