biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / octave-modules / financial / default.nix
blobd034718ab5b8d0dc179a45ff06bc3d123f6ec7e7
1 { buildOctavePackage
2 , lib
3 , fetchurl
4 }:
6 buildOctavePackage rec {
7   pname = "financial";
8   version = "0.5.3";
10   src = fetchurl {
11     url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
12     sha256 = "0f963yg6pwvrdk5fg7b71ny47gzy48nqxdzj2ngcfrvmb5az4vmf";
13   };
15   meta = with lib; {
16     homepage = "https://octave.sourceforge.io/financial/index.html";
17     license = licenses.gpl3Plus;
18     maintainers = with maintainers; [ KarlJoad ];
19     description = "Monte Carlo simulation, options pricing routines, financial manipulation, plotting functions and additional date manipulation tools";
20   };