mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 23:36:35 +01:00
gnu: Add ghc-hashable-time.
* gnu/packages/haskell.scm (ghc-hashable-time): New variable.
This commit is contained in:
parent
9dfc79b34c
commit
82674ed948
1 changed files with 23 additions and 0 deletions
|
@ -1806,6 +1806,29 @@ (define-public ghc-hashable
|
||||||
combine hash values.")
|
combine hash values.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-hashable-time
|
||||||
|
(package
|
||||||
|
(name "ghc-hashable-time")
|
||||||
|
(version "0.2.0.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"https://hackage.haskell.org/package/hashable-time/hashable-time-"
|
||||||
|
version
|
||||||
|
".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0k932nyd08l3xxbh2g3n76py2f4kd9yw4s5a065vjz0xp6wjnxdm"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(inputs `(("ghc-hashable" ,ghc-hashable)))
|
||||||
|
(home-page "http://hackage.haskell.org/package/hashable-time")
|
||||||
|
(synopsis "Hashable instances for Data.Time")
|
||||||
|
(description
|
||||||
|
"This package provides @code{Hashable} instances for types in
|
||||||
|
@code{Data.Time}.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public ghc-data-hash
|
(define-public ghc-data-hash
|
||||||
(package
|
(package
|
||||||
(name "ghc-data-hash")
|
(name "ghc-data-hash")
|
||||||
|
|
Loading…
Reference in a new issue