1{
2 buildOctavePackage,
3 lib,
4 fetchurl,
5}:
6
7buildOctavePackage rec {
8 pname = "splines";
9 version = "1.3.5";
10
11 src = fetchurl {
12 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
13 sha256 = "sha256-r4hod3l8OpyKNs59lGE8EFn3n6tIg0KeezKjsB4D16Y=";
14 };
15
16 meta = {
17 homepage = "https://gnu-octave.github.io/packages/splines/";
18 license = with lib.licenses; [
19 gpl3Plus
20 publicDomain
21 ];
22 maintainers = with lib.maintainers; [ KarlJoad ];
23 description = "Additional spline functions";
24 };
25}