gnu: Add ghc-hmatrix-special.

* gnu/packages/haskell.scm (ghc-hmatrix-special): New variable.
This commit is contained in:
Federico Beffa 2016-10-16 16:29:51 +02:00
parent 932104abce
commit 271a5365aa
No known key found for this signature in database
GPG Key ID: 58936E0E2F1B5A4C
1 changed files with 23 additions and 0 deletions

View File

@ -7676,4 +7676,27 @@ interface to selected numerical computations, internally implemented
using GSL.")
(license license:gpl3+)))
(define-public ghc-hmatrix-special
(package
(name "ghc-hmatrix-special")
(version "0.4.0.0")
(source
(origin
(method url-fetch)
(uri
(string-append
"http://hackage.haskell.org/package/hmatrix-special/hmatrix-special-"
version ".tar.gz"))
(sha256
(base32 "0cr9y3swzj7slrd84g1nhdkp1kpq4q5ihwapmiaidpr2bv3hrfhz"))))
(build-system haskell-build-system)
(inputs
`(("ghc-hmatrix" ,ghc-hmatrix)
("ghc-hmatrix-gsl" ,ghc-hmatrix-gsl)))
(home-page "https://github.com/albertoruiz/hmatrix")
(synopsis "Haskell interface to GSL special functions")
(description "This library provides an interface to GSL special
functions for Haskell.")
(license license:gpl3+)))
;;; haskell.scm ends here