mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add ghc-logging-facade.
* gnu/packages/haskell.scm (ghc-logging-facade): New variable.
This commit is contained in:
parent
b55630a3a8
commit
1c17529fd5
1 changed files with 22 additions and 0 deletions
|
@ -5424,6 +5424,28 @@ (define-public ghc-conduit
|
|||
enumerator/iteratee and pipes." )
|
||||
(license expat)))
|
||||
|
||||
(define-public ghc-logging-facade
|
||||
(package
|
||||
(name "ghc-logging-facade")
|
||||
(version "0.1.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "http://hackage.haskell.org/package/"
|
||||
"logging-facade/logging-facade-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0zhdbjyj0j9by19rma9alxysrxnnl3s4kks4zk4bx0dg5xa0264y"))))
|
||||
(build-system haskell-build-system)
|
||||
(native-inputs
|
||||
`(("ghc-hspec" ,ghc-hspec)))
|
||||
(home-page "http://hackage.haskell.org/package/logging-facade")
|
||||
(synopsis "Simple logging abstraction that allows multiple back-ends")
|
||||
(description
|
||||
"This package provides a simple logging abstraction that allows multiple
|
||||
back-ends.")
|
||||
(license expat)))
|
||||
|
||||
(define-public idris
|
||||
(package
|
||||
(name "idris")
|
||||
|
|
Loading…
Reference in a new issue