mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-25 17:55:21 +00:00
36 lines
647 B
Nix
36 lines
647 B
Nix
{
|
|
buildOctavePackage,
|
|
lib,
|
|
fetchurl,
|
|
matgeom,
|
|
gsl,
|
|
}:
|
|
|
|
buildOctavePackage rec {
|
|
pname = "geometry";
|
|
version = "4.1.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-28FliEXJfS1mh8FJCmG0PTWZE9M0IOR1tlnzNfejQ2A=";
|
|
};
|
|
|
|
requiredOctavePackages = [
|
|
matgeom
|
|
];
|
|
|
|
buildInputs = [
|
|
gsl
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://gnu-octave.github.io/packages/geometry/";
|
|
license = with lib.licenses; [
|
|
gpl3Plus
|
|
boost
|
|
];
|
|
maintainers = with lib.maintainers; [ ravenjoad ];
|
|
description = "Library for extending MatGeom functionality";
|
|
};
|
|
}
|