octave.pkgs.geometry: init at 4.0.0

This commit is contained in:
Karl Hallsby 2021-01-06 11:05:43 -06:00 committed by Doron Behar
parent 099a55dc0a
commit 33cc927ed7
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ buildOctavePackage
, lib
, fetchurl
, matgeom
}:
buildOctavePackage rec {
pname = "geometry";
version = "4.0.0";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "1zmd97xir62fr5v57xifh2cvna5fg67h9yb7bp2vm3ll04y41lhs";
};
requiredOctavePackages = [
matgeom
];
meta = with lib; {
homepage = "https://octave.sourceforge.io/geometry/index.html";
license = with licenses; [ gpl3Plus boost ];
maintainers = with maintainers; [ KarlJoad ];
description = "Library for extending MatGeom functionality";
};
}

View file

@ -105,6 +105,8 @@ makeScope newScope (self:
generate_html = callPackage ../development/octave-modules/generate_html { };
geometry = callPackage ../development/octave-modules/geometry { };
io = callPackage ../development/octave-modules/io {
inherit (octave) enableJava;
};