mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
octave.pkgs.financial: init at 0.5.3
This commit is contained in:
parent
4296286a50
commit
6ad87c34dd
23
pkgs/development/octave-modules/financial/default.nix
Normal file
23
pkgs/development/octave-modules/financial/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -89,6 +89,8 @@ makeScope newScope (self:
|
||||
ffc = null;
|
||||
};
|
||||
|
||||
financial = callPackage ../development/octave-modules/financial { };
|
||||
|
||||
general = callPackage ../development/octave-modules/general {
|
||||
nettle = pkgs.nettle;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user