nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 buildOctavePackage,
3 lib,
4 fetchurl,
5 gfortran,
6}:
7
8buildOctavePackage rec {
9 pname = "optiminterp";
10 version = "0.3.7";
11
12 src = fetchurl {
13 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
14 sha256 = "sha256-ubh/iOZlWTOYsTA6hJfPOituNBKTn2LbBnx+tmmSEug=";
15 };
16
17 nativeBuildInputs = [
18 gfortran
19 ];
20
21 meta = {
22 homepage = "https://gnu-octave.github.io/packages/optiminterp/";
23 license = lib.licenses.gpl3Plus;
24 maintainers = with lib.maintainers; [ KarlJoad ];
25 description = "Optimal interpolation toolbox for octave";
26 longDescription = ''
27 An optimal interpolation toolbox for octave. This package provides
28 functions to perform a n-dimensional optimal interpolations of
29 arbitrarily distributed data points.
30 '';
31 };
32}