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