blob: 565574ca1d0645c56ff988bc934d1720c429b70e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{
buildOctavePackage,
lib,
fetchurl,
statistics,
}:
buildOctavePackage rec {
pname = "financial";
version = "0.5.4";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "sha256-C5BohrTHVMaDrV9GTbp5d0OvXR+szQMjV5hvONFtP7s=";
};
requiredOctavePackages = [
statistics
];
meta = {
homepage = "https://gnu-octave.github.io/packages/financial/";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ ravenjoad ];
description = "Monte Carlo simulation, options pricing routines, financial manipulation, plotting functions and additional date manipulation tools";
};
}
|