summary refs log tree commit diff
path: root/pkgs/development/octave-modules
diff options
context:
space:
mode:
authorKarl Hallsby <karl@hallsby.com>2021-01-06 11:48:47 -0600
committerDoron Behar <doron.behar@gmail.com>2021-02-24 21:00:51 +0200
commit36695031c3e12e3c0804d82854196be1a2482f8b (patch)
tree9ccbaac102f0bb6b78ab4cc60c68f0643358fe08 /pkgs/development/octave-modules
parent686dc5c60d9de7bfccc46875ca0f621ef29a3913 (diff)
downloadnixpkgs-36695031c3e12e3c0804d82854196be1a2482f8b.tar
nixpkgs-36695031c3e12e3c0804d82854196be1a2482f8b.tar.gz
nixpkgs-36695031c3e12e3c0804d82854196be1a2482f8b.tar.bz2
nixpkgs-36695031c3e12e3c0804d82854196be1a2482f8b.tar.lz
nixpkgs-36695031c3e12e3c0804d82854196be1a2482f8b.tar.xz
nixpkgs-36695031c3e12e3c0804d82854196be1a2482f8b.tar.zst
nixpkgs-36695031c3e12e3c0804d82854196be1a2482f8b.zip
octave.pkgs.optiminterp: init at 0.3.6
Diffstat (limited to 'pkgs/development/octave-modules')
-rw-r--r--pkgs/development/octave-modules/optiminterp/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/development/octave-modules/optiminterp/default.nix b/pkgs/development/octave-modules/optiminterp/default.nix
new file mode 100644
index 00000000000..8409a10104e
--- /dev/null
+++ b/pkgs/development/octave-modules/optiminterp/default.nix
@@ -0,0 +1,31 @@
+{ buildOctavePackage
+, lib
+, fetchurl
+, gfortran
+}:
+
+buildOctavePackage rec {
+  pname = "optiminterp";
+  version = "0.3.6";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
+    sha256 = "05nzj2jmrczbnsr64w2a7kww19s6yialdqnsbg797v11ii7aiylc";
+  };
+
+  nativeBuildInputs = [
+    gfortran
+  ];
+
+  meta = with lib; {
+    homepage = "https://octave.sourceforge.io/optiminterp/index.html";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ KarlJoad ];
+    description = "An optimal interpolation toolbox for octave";
+    longDescription = ''
+       An optimal interpolation toolbox for octave. This package provides
+       functions to perform a n-dimensional optimal interpolations of
+       arbitrarily distributed data points.
+    '';
+  };
+}