mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: Add ghc-pqueue.
* gnu/packages/haskell.scm (ghc-pqueue): New variable.
This commit is contained in:
parent
4fc161b9c6
commit
71c2e3e1a1
1 changed files with 22 additions and 0 deletions
|
@ -10907,6 +10907,28 @@ (define-public ghc-bzlib-conduit
|
||||||
streaming compression and decompression.")
|
streaming compression and decompression.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-pqueue
|
||||||
|
(package
|
||||||
|
(name "ghc-pqueue")
|
||||||
|
(version "1.4.1.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://hackage.haskell.org/package/"
|
||||||
|
"pqueue/pqueue-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1zvwm1zcqqq5n101s1brjhgbay8rf9fviq6gxbplf40i63m57p1x"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("ghc-quickcheck" ,ghc-quickcheck)))
|
||||||
|
(home-page "https://hackage.haskell.org/package/pqueue")
|
||||||
|
(synopsis "Reliable, persistent, fast priority queues")
|
||||||
|
(description
|
||||||
|
"This package provides a fast, reliable priority queue implementation
|
||||||
|
based on a binomial heap.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public ghc-weigh
|
(define-public ghc-weigh
|
||||||
(package
|
(package
|
||||||
(name "ghc-weigh")
|
(name "ghc-weigh")
|
||||||
|
|
Loading…
Reference in a new issue