Files

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

26 lines
538 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
buildOctavePackage,
lib,
fetchurl,
}:
buildOctavePackage rec {
pname = "splines";
version = "1.3.5";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "sha256-r4hod3l8OpyKNs59lGE8EFn3n6tIg0KeezKjsB4D16Y=";
};
meta = {
homepage = "https://gnu-octave.github.io/packages/splines/";
license = with lib.licenses; [
gpl3Plus
publicDomain
];
maintainers = with lib.maintainers; [ KarlJoad ];
description = "Additional spline functions";
};
}