Skip to content
Snippets Groups Projects
Commit f50fc138 authored by Federico Beffa's avatar Federico Beffa
Browse files

gnu: Add ghc-vector.

* gnu/packages/haskell.scm (ghc-vector): New variable.
parent fa468e87
No related branches found
No related tags found
No related merge requests found
...@@ -748,4 +748,33 @@ (define-public ghc-parsec ...@@ -748,4 +748,33 @@ (define-public ghc-parsec
is also parametric in the input stream type.") is also parametric in the input stream type.")
(license bsd-3))) (license bsd-3)))
(define-public ghc-vector
(package
(name "ghc-vector")
(version "0.10.12.2")
(outputs '("out" "doc"))
(source
(origin
(method url-fetch)
(uri (string-append
"http://hackage.haskell.org/package/vector/vector-"
version
".tar.gz"))
(sha256
(base32
"01hc71k1z9m0g0dv4zsvq5d2dvbgyc5p01hryw5c53792yi2fm25"))))
(build-system haskell-build-system)
(inputs
`(("ghc-quickcheck" ,ghc-quickcheck)))
;; these inputs are necessary to use this library
(propagated-inputs
`(("ghc-primitive" ,ghc-primitive)))
(arguments
`(#:tests? #f)) ; FIXME: currently missing libraries used for tests.
(home-page "https://github.com/haskell/vector")
(synopsis "Efficient Arrays")
(description "An efficient implementation of Int-indexed arrays (both
mutable and immutable), with a powerful loop optimisation framework.")
(license bsd-3)))
;;; haskell.scm ends here ;;; haskell.scm ends here
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment