depot/pkgs/development/octave-modules/geometry/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

27 lines
640 B
Nix

{ buildOctavePackage
, lib
, fetchhg
, matgeom
}:
buildOctavePackage rec {
pname = "geometry";
version = "unstable-2021-07-07";
src = fetchhg {
url = "http://hg.code.sf.net/p/octave/${pname}";
rev = "04965cda30b5f9e51774194c67879e7336df1710";
sha256 = "sha256-ECysYOJMF4gPiCFung9hFSlyyO60X3MGirQ9FlYDix8=";
};
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";
};
}