mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: Add optionmatrix.
* gnu/packages/finance.scm (optionmatrix): New variable. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
f00690c0ed
commit
58dbf4c930
1 changed files with 34 additions and 0 deletions
|
@ -90,7 +90,9 @@ (define-module (gnu packages finance)
|
|||
#:use-module (gnu packages libusb)
|
||||
#:use-module (gnu packages linux)
|
||||
#:use-module (gnu packages man)
|
||||
#:use-module (gnu packages maths)
|
||||
#:use-module (gnu packages multiprecision)
|
||||
#:use-module (gnu packages ncurses)
|
||||
#:use-module (gnu packages networking)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages popt)
|
||||
|
@ -104,6 +106,7 @@ (define-module (gnu packages finance)
|
|||
#:use-module (gnu packages qt)
|
||||
#:use-module (gnu packages readline)
|
||||
#:use-module (gnu packages sphinx)
|
||||
#:use-module (gnu packages tex)
|
||||
#:use-module (gnu packages texinfo)
|
||||
#:use-module (gnu packages textutils)
|
||||
#:use-module (gnu packages time)
|
||||
|
@ -1813,6 +1816,37 @@ (define-public hledger-web
|
|||
editing on the Web.")
|
||||
(license license:gpl3)))
|
||||
|
||||
(define-public optionmatrix
|
||||
(package
|
||||
(name "optionmatrix")
|
||||
(version "1.4.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"mirror://sourceforge/optionmatrix/optionmatrix-"
|
||||
version ".tar.xz"))
|
||||
(sha256
|
||||
(base32 "1zd0pfiphnijh1l94swb3mjrpmjsn37z11mklamd7zw6h2d4zh4d"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("gsl" ,gsl)
|
||||
("gtk3" ,gtk+)
|
||||
("ncurses" ,ncurses)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)
|
||||
("texinfo" ,texinfo)
|
||||
("texlive" ,(texlive-union (list texlive-epsf
|
||||
texlive-tex-texinfo)))))
|
||||
(home-page "https://anthonybradford.github.io/optionmatrix/")
|
||||
(synopsis "Financial derivative calculator")
|
||||
(description
|
||||
"The OptionMatrix programs are financial derivative calculators. These
|
||||
calculators are real-time multi-model option chain pricers with analytics and
|
||||
interactive controls. This package provides a GTK+ graphical user interface
|
||||
(@code{optionmatrix}) and a curses interface (@code{optionmatrix_console}).")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public python-ta-lib
|
||||
(package
|
||||
(name "python-ta-lib")
|
||||
|
|
Loading…
Reference in a new issue