gnu: Add ghc-splitmix.
* gnu/packages/haskell-xyz.scm (ghc-splitmix): New variable. (ghc-splitmix-bootstrap): Inherit from 'ghc-splitmix'.master
parent
f9d78c7f78
commit
7799d17f8b
|
@ -9475,9 +9475,9 @@ splitting lists into parts, akin to the @code{split} function found in several
|
||||||
mainstream languages.")
|
mainstream languages.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public ghc-splitmix-bootstrap
|
(define-public ghc-splitmix
|
||||||
(package
|
(package
|
||||||
(name "ghc-splitmix-bootstrap")
|
(name "ghc-splitmix")
|
||||||
(version "0.0.3")
|
(version "0.0.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
|
@ -9487,11 +9487,15 @@ mainstream languages.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1k0amgkz7rvyz3lnw7m786ilnr1cibwhx9sc4qynq329gxan5r7w"))))
|
"1k0amgkz7rvyz3lnw7m786ilnr1cibwhx9sc4qynq329gxan5r7w"))))
|
||||||
(properties '((hidden? #t)))
|
|
||||||
(build-system haskell-build-system)
|
(build-system haskell-build-system)
|
||||||
(arguments `(#:tests? #f))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("ghc-random" ,ghc-random)))
|
`(("ghc-random" ,ghc-random)))
|
||||||
|
(native-inputs
|
||||||
|
`(("ghc-hunit" ,ghc-hunit)
|
||||||
|
("ghc-async" ,ghc-async)
|
||||||
|
("ghc-base-compat-batteries" ,ghc-base-compat-batteries)
|
||||||
|
("ghc-tf-random" ,ghc-tf-random)
|
||||||
|
("ghc-vector" ,ghc-vector)))
|
||||||
(home-page "http://hackage.haskell.org/package/splitmix")
|
(home-page "http://hackage.haskell.org/package/splitmix")
|
||||||
(synopsis "Fast and splittable pseudorandom number generator")
|
(synopsis "Fast and splittable pseudorandom number generator")
|
||||||
(description "This package provides a Pure Haskell implementation of the
|
(description "This package provides a Pure Haskell implementation of the
|
||||||
|
@ -9508,6 +9512,14 @@ are easily inverted, and two successive outputs suffice to reconstruct the
|
||||||
internal state).")
|
internal state).")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-splitmix-bootstrap
|
||||||
|
(package
|
||||||
|
(inherit ghc-splitmix)
|
||||||
|
(name "ghc-splitmix-bootstrap")
|
||||||
|
(arguments `(#:tests? #f))
|
||||||
|
(native-inputs '())
|
||||||
|
(properties '((hidden? #t)))))
|
||||||
|
|
||||||
(define-public ghc-statevar
|
(define-public ghc-statevar
|
||||||
(package
|
(package
|
||||||
(name "ghc-statevar")
|
(name "ghc-statevar")
|
||||||
|
|
Reference in New Issue