mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add ghc-void.
* gnu/packages/haskell.scm (ghc-void): New variable.
This commit is contained in:
parent
946fa8c9b0
commit
03f6074b72
1 changed files with 27 additions and 0 deletions
|
@ -2406,6 +2406,33 @@ (define-public ghc-nats
|
|||
(description "This library provides the natural numbers for Haskell.")
|
||||
(license bsd-3)))
|
||||
|
||||
(define-public ghc-void
|
||||
(package
|
||||
(name "ghc-void")
|
||||
(version "0.7.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"http://hackage.haskell.org/package/void/void-"
|
||||
version
|
||||
".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1x15x2axz84ndw2bf60vjqljhrb0w95lddaljsxrl0hcd29zvw69"))))
|
||||
(build-system haskell-build-system)
|
||||
(propagated-inputs
|
||||
`(("ghc-semigroups" ,ghc-semigroups)))
|
||||
(inputs
|
||||
`(("ghc-hashable" ,ghc-hashable)))
|
||||
(home-page "http://github.com/ekmett/void")
|
||||
(synopsis
|
||||
"Logically uninhabited data type")
|
||||
(description
|
||||
"A Haskell 98 logically uninhabited data type, used to indicate that a
|
||||
given term should not exist.")
|
||||
(license bsd-3)))
|
||||
|
||||
(define-public ghc-semigroups
|
||||
(package
|
||||
(name "ghc-semigroups")
|
||||
|
|
Loading…
Reference in a new issue