nixpkgs/pkgs/development/octave-modules/matgeom/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
533 B
Nix
Raw Permalink Normal View History

2021-01-06 17:22:06 +00:00
{ buildOctavePackage
, lib
, fetchurl
}:
buildOctavePackage rec {
pname = "matgeom";
version = "1.2.3";
2021-01-06 17:22:06 +00:00
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "12q66dy4ninhki3jslzcamfblcb3cdkfbbzn3a5har1s212lsfiw";
2021-01-06 17:22:06 +00:00
};
meta = with lib; {
homepage = "https://octave.sourceforge.io/matgeom/index.html";
license = with licenses; [ bsd2 gpl3Plus ];
maintainers = with maintainers; [ KarlJoad ];
description = "Geometry toolbox for 2D/3D geometric computing";
};
}