~ruther/guix-local

4980cd1697276bfdfe26d90132d9e6e865f7b8e3 — Hartmut Goebel 2 years ago ea78441
gnu: Add ruby-pairing-heap.

* gnu/packages/ruby.scm (ruby-pairing-heap): New variable.
1 files changed, 26 insertions(+), 0 deletions(-)

M gnu/packages/ruby.scm
M gnu/packages/ruby.scm => gnu/packages/ruby.scm +26 -0
@@ 12051,6 12051,32 @@ dependency, @code{pg}.")
    (home-page "https://github.com/QueueClassic/queue_classic")
    (license license:expat)))

(define-public ruby-pairing-heap
  (package
    (name "ruby-pairing-heap")
    (version "3.1.0")
    (source (origin
              (method url-fetch)
              (uri (rubygems-uri "pairing_heap" version))
              (sha256
               (base32
                "059kqpw53cancnp0bp7y1s74y1955riw33w3lqfbnms4b4mdh5zj"))))
    (build-system ruby-build-system)
    (arguments
     (list
      #:phases
      #~(modify-phases %standard-phases
          (add-after 'unpack 'patch
            (lambda _
              (substitute* "Rakefile"
                (("require \"standard/rake\"") "")
                ((":\"standard:fix\",") "")))))))
    (synopsis "Priority queue in pure Ruby")
    (description "This package provides a performant priority queue in pure
ruby with support for changing priority using pairing heap data structure")
    (home-page "https://github.com/mhib/pairing_heap")
    (license license:expat)))

(define-public ruby-ae
  (package
    (name "ruby-ae")