Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildOctavePackage, 3 lib, 4 fetchurl, 5}: 6 7buildOctavePackage rec { 8 pname = "financial"; 9 version = "0.5.3"; 10 11 src = fetchurl { 12 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 13 sha256 = "0f963yg6pwvrdk5fg7b71ny47gzy48nqxdzj2ngcfrvmb5az4vmf"; 14 }; 15 16 meta = { 17 homepage = "https://gnu-octave.github.io/packages/financial/"; 18 license = lib.licenses.gpl3Plus; 19 maintainers = with lib.maintainers; [ KarlJoad ]; 20 description = "Monte Carlo simulation, options pricing routines, financial manipulation, plotting functions and additional date manipulation tools"; 21 }; 22}