blob: fcfc978250ac23e2efca3529116ef7e8b419c82c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{
buildOctavePackage,
lib,
fetchurl,
}:
buildOctavePackage rec {
pname = "matgeom";
version = "1.2.4";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "sha256-azRPhwMVvydCyojA/rXD2og1tPTL0vii15OveYQF+SA=";
};
meta = {
homepage = "https://gnu-octave.github.io/packages/matgeom/";
license = with lib.licenses; [
bsd2
gpl3Plus
];
maintainers = with lib.maintainers; [ ravenjoad ];
description = "Geometry toolbox for 2D/3D geometric computing";
};
}
|