lol

octave.pkgs.financial: init at 0.5.3

authored by

Karl Hallsby and committed by
Doron Behar
6ad87c34 4296286a

+25
+23
pkgs/development/octave-modules/financial/default.nix
··· 1 + { buildOctavePackage 2 + , lib 3 + , fetchurl 4 + , io 5 + , statistics 6 + }: 7 + 8 + buildOctavePackage rec { 9 + pname = "financial"; 10 + version = "0.5.3"; 11 + 12 + src = fetchurl { 13 + url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 14 + sha256 = "0f963yg6pwvrdk5fg7b71ny47gzy48nqxdzj2ngcfrvmb5az4vmf"; 15 + }; 16 + 17 + meta = with lib; { 18 + homepage = "https://octave.sourceforge.io/financial/index.html"; 19 + license = licenses.gpl3Plus; 20 + maintainers = with maintainers; [ KarlJoad ]; 21 + description = "Monte Carlo simulation, options pricing routines, financial manipulation, plotting functions and additional date manipulation tools"; 22 + }; 23 + }
+2
pkgs/top-level/octave-packages.nix
··· 89 89 ffc = null; 90 90 }; 91 91 92 + financial = callPackage ../development/octave-modules/financial { }; 93 + 92 94 general = callPackage ../development/octave-modules/general { 93 95 nettle = pkgs.nettle; 94 96 };