mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 21:59:08 -05:00
gnu: Add ghc-primitive.
* gnu/packages/haskell.scm (ghc-primitive): New variable.
This commit is contained in:
parent
df596b948d
commit
4af803a7c0
1 changed files with 24 additions and 0 deletions
|
@ -455,4 +455,28 @@ (define-public ghc-random
|
||||||
(description "This package provides a basic random number generation
|
(description "This package provides a basic random number generation
|
||||||
library, including the ability to split random number generators.")
|
library, including the ability to split random number generators.")
|
||||||
(license bsd-3)))
|
(license bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-primitive
|
||||||
|
(package
|
||||||
|
(name "ghc-primitive")
|
||||||
|
(version "0.5.4.0")
|
||||||
|
(outputs '("out" "doc"))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"http://hackage.haskell.org/package/primitive/primitive-"
|
||||||
|
version
|
||||||
|
".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"05gdgj383xdrdkhxh26imlvs8ji0z28ny38ms9snpvv5i8l2lg10"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(home-page
|
||||||
|
"https://github.com/haskell/primitive")
|
||||||
|
(synopsis "Primitive memory-related operations")
|
||||||
|
(description
|
||||||
|
"This package provides various primitive memory-related operations.")
|
||||||
|
(license bsd-3)))
|
||||||
|
|
||||||
;;; haskell.scm ends here
|
;;; haskell.scm ends here
|
||||||
|
|
Loading…
Reference in a new issue