rekahsoft-gnu: Add ghc-heaps

* rekahsoft-gnu/packages/haskell-apps.scm (ghc-heaps): New variable
This commit is contained in:
Collin J. Doering 2022-07-29 01:50:38 -04:00
parent 6c99e1e478
commit 1c2036f076
Signed by: rekahsoft
GPG Key ID: 7B4DEB93212B3022
1 changed files with 19 additions and 0 deletions

View File

@ -164,3 +164,22 @@ packages. The first three components of the version number match the upstream
jquery.dgtable version. The package is designed to meet the redistribution jquery.dgtable version. The package is designed to meet the redistribution
requirements of downstream users (e.g. Debian).") requirements of downstream users (e.g. Debian).")
(license license:expat))) (license license:expat)))
(define-public ghc-heaps
(package
(name "ghc-heaps")
(version "0.4")
(source
(origin
(method url-fetch)
(uri (hackage-uri "heaps" version))
(sha256
(base32 "1zbw0qrlnhb42v04phzwmizbpwg21wnpl7p4fbr9xsasp7w9scl9"))))
(build-system haskell-build-system)
(home-page "http://github.com/ekmett/heaps/")
(synopsis "Asymptotically optimal Brodal/Okasaki heaps.")
(description
"Asymptotically optimal Brodal\\/Okasaki bootstrapped skew-binomial heaps from the
paper <http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.48.973 \"Optimal
Purely Functional Priority Queues\">, extended with a 'Foldable' interface.")
(license license:bsd-3)))