mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add ghc-auto-update.
* gnu/packages/haskell.scm (ghc-auto-update): New variable.
This commit is contained in:
parent
cb2119e4f5
commit
bc0fb230f9
1 changed files with 21 additions and 0 deletions
|
@ -2174,6 +2174,27 @@ (define-public ghc-base-orphans
|
|||
available in later versions of base to a wider (older) range of compilers.")
|
||||
(license bsd-3)))
|
||||
|
||||
(define-public ghc-auto-update
|
||||
(package
|
||||
(name "ghc-auto-update")
|
||||
(version "0.1.2.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"http://hackage.haskell.org/package/auto-update/auto-update-"
|
||||
version
|
||||
".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1ns4c5mqhnm7hsiqxf1ivjs5fflyq92b16ldzrcl0p85631h0c3v"))))
|
||||
(build-system haskell-build-system)
|
||||
(home-page "https://github.com/yesodweb/wai")
|
||||
(synopsis "Efficiently run periodic, on-demand actions")
|
||||
(description "This library provides mechanisms to efficiently run
|
||||
periodic, on-demand actions in Haskell.")
|
||||
(license expat)))
|
||||
|
||||
(define-public ghc-doctest
|
||||
(package
|
||||
(name "ghc-doctest")
|
||||
|
|
Loading…
Reference in a new issue