nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 23 lines 625 B view raw
1{ buildOctavePackage 2, lib 3, fetchurl 4, io 5, statistics 6}: 7 8buildOctavePackage 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}