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