nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ buildOctavePackage
2, lib
3, fetchurl
4}:
5
6buildOctavePackage rec {
7 pname = "splines";
8 version = "1.3.4";
9
10 src = fetchurl {
11 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
12 sha256 = "11a34f6a7615fc8x1smk3lx8vslilx4mrxi8f01la3wq68khnq5f";
13 };
14
15 meta = with lib; {
16 homepage = "https://octave.sourceforge.io/splines/index.html";
17 license = with licenses; [ gpl3Plus publicDomain ];
18 maintainers = with maintainers; [ KarlJoad ];
19 description = "Additional spline functions";
20 };
21}