mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
27 lines
590 B
Nix
27 lines
590 B
Nix
{ 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";
|
|
};
|
|
}
|