about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/octave-modules/splines/default.nix
blob: 9a249c4674466c9d50045b653cecd4dc38df35c4 (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 = "splines";
  version = "1.3.4";

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

  meta = with lib; {
    homepage = "https://octave.sourceforge.io/splines/index.html";
    license = with licenses; [ gpl3Plus publicDomain ];
    maintainers = with maintainers; [ KarlJoad ];
    description = "Additional spline functions";
  };
}