mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add ghc-dense-linear-algebra.
* gnu/packages/haskell-xyz.scm (ghc-dense-linear-algebra): New variable.
This commit is contained in:
parent
faac56f3af
commit
e924e17e4a
1 changed files with 30 additions and 0 deletions
|
@ -2566,6 +2566,36 @@ It includes hashing functions for all basic Haskell98 types.")
|
||||||
providing an @code{rnf} implementation.")
|
providing an @code{rnf} implementation.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-dense-linear-algebra
|
||||||
|
(package
|
||||||
|
(name "ghc-dense-linear-algebra")
|
||||||
|
(version "0.1.0.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://hackage.haskell.org/package/"
|
||||||
|
"dense-linear-algebra/dense-linear-algebra-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1m7jjxahqxj7ilic3r9806mwp5rnnsmn8vvipkmk40xl65wplxzp"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(inputs
|
||||||
|
`(("ghc-math-functions" ,ghc-math-functions)
|
||||||
|
("ghc-primitive" ,ghc-primitive)
|
||||||
|
("ghc-vector" ,ghc-vector)
|
||||||
|
("ghc-vector-algorithms" ,ghc-vector-algorithms)
|
||||||
|
("ghc-vector-th-unbox" ,ghc-vector-th-unbox)
|
||||||
|
("ghc-vector-binary-instances" ,ghc-vector-binary-instances)))
|
||||||
|
(native-inputs
|
||||||
|
`(("ghc-hspec" ,ghc-hspec)
|
||||||
|
("ghc-quickcheck" ,ghc-quickcheck)))
|
||||||
|
(home-page "http://hackage.haskell.org/package/dense-linear-algebra")
|
||||||
|
(synopsis "Simple and incomplete implementation of linear algebra")
|
||||||
|
(description "This library is simply a collection of linear-algebra
|
||||||
|
related modules split from the statistics library.")
|
||||||
|
(license license:bsd-2)))
|
||||||
|
|
||||||
(define-public ghc-descriptive
|
(define-public ghc-descriptive
|
||||||
(package
|
(package
|
||||||
(name "ghc-descriptive")
|
(name "ghc-descriptive")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue