octave.pkgs.financial: init at 0.5.3

This commit is contained in:
Karl Hallsby 2021-01-06 10:56:20 -06:00 committed by Doron Behar
parent 4296286a50
commit 6ad87c34dd
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ buildOctavePackage
, lib
, fetchurl
, io
, statistics
}:
buildOctavePackage rec {
pname = "financial";
version = "0.5.3";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "0f963yg6pwvrdk5fg7b71ny47gzy48nqxdzj2ngcfrvmb5az4vmf";
};
meta = with lib; {
homepage = "https://octave.sourceforge.io/financial/index.html";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ KarlJoad ];
description = "Monte Carlo simulation, options pricing routines, financial manipulation, plotting functions and additional date manipulation tools";
};
}

View file

@ -89,6 +89,8 @@ makeScope newScope (self:
ffc = null;
};
financial = callPackage ../development/octave-modules/financial { };
general = callPackage ../development/octave-modules/general {
nettle = pkgs.nettle;
};