lol

octave.pkgs.divand: init at 1.1.2

authored by

Karl Hallsby and committed by
Doron Behar
74944461 0de6cfa3

+23
+21
pkgs/development/octave-modules/divand/default.nix
··· 1 + { buildOctavePackage 2 + , lib 3 + , fetchurl 4 + }: 5 + 6 + buildOctavePackage rec { 7 + pname = "divand"; 8 + version = "1.1.2"; 9 + 10 + src = fetchurl { 11 + url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 12 + sha256 = "0nmaz5j37dflz7p4a4lmwzkh7g1gghdh7ccvkbyy0fpgv9lr1amg"; 13 + }; 14 + 15 + meta = with lib; { 16 + homepage = "https://octave.sourceforge.io/divand/index.html"; 17 + license = licenses.gpl2Plus; 18 + maintainers = with maintainers; [ KarlJoad ]; 19 + description = "Performs an n-dimensional variational analysis (interpolation) of arbitrarily located observations"; 20 + }; 21 + }
+2
pkgs/top-level/octave-packages.nix
··· 77 77 78 78 dicom = callPackage ../development/octave-modules/dicom { }; 79 79 80 + divand = callPackage ../development/octave-modules/divand { }; 81 + 80 82 general = callPackage ../development/octave-modules/general { 81 83 nettle = pkgs.nettle; 82 84 };