summary refs log tree commit diff
path: root/pkgs/development/octave-modules/nurbs/default.nix
blob: fbd67a0a46a94a6098e2ce5f8014c87685a21e04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ buildOctavePackage
, lib
, fetchurl
}:

buildOctavePackage rec {
  pname = "nurbs";
  version = "1.4.3";

  src = fetchurl {
    url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
    sha256 = "16r05av75nvmkz1knf0nv0gj4fcjjf3jnyf94bdgxf84wahncim7";
  };

  meta = with lib; {
    homepage = "https://octave.sourceforge.io/nurbs/index.html";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ KarlJoad ];
    description = "Collection of routines for the creation, and manipulation of Non-Uniform Rational B-Splines (NURBS), based on the NURBS toolbox by Mark Spink";
  };
}